Browse Source

Add newline to debug string

dynamic-accesslists
Dirk Engling 4 years ago
parent
commit
e33efb5086
  1. 2
      ot_udp.c

2
ot_udp.c

@ -218,7 +218,7 @@ void udp_init( int64 sock, unsigned int worker_count ) { @@ -218,7 +218,7 @@ void udp_init( int64 sock, unsigned int worker_count ) {
if( !g_rijndael_round_key[0] )
udp_generate_rijndael_round_key();
#ifdef _DEBUG
fprintf( stderr, " installing %d workers on udp socket %ld", worker_count, (unsigned long)sock );
fprintf( stderr, " installing %d workers on udp socket %ld\n", worker_count, (unsigned long)sock );
#endif
while( worker_count-- )
pthread_create( &thread_id, NULL, udp_worker, (void *)sock );

Loading…
Cancel
Save