summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk Engling <erdgeist@erdgeist.org>2021-05-09 00:00:55 +0200
committerDirk Engling <erdgeist@erdgeist.org>2021-05-09 00:00:55 +0200
commite33efb50867d74ca2684739bf3a5ff4a284689ec (patch)
tree5cc3f49adb9617efc4bdea23266a2192c0e61f94
parent0178c27662bd70640ee17f4659f1f6c482d465be (diff)
Add newline to debug string
-rw-r--r--ot_udp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ot_udp.c b/ot_udp.c
index 6b455f3..edbaca8 100644
--- a/ot_udp.c
+++ b/ot_udp.c
@@ -218,7 +218,7 @@ void udp_init( int64 sock, unsigned int worker_count ) {
218 if( !g_rijndael_round_key[0] ) 218 if( !g_rijndael_round_key[0] )
219 udp_generate_rijndael_round_key(); 219 udp_generate_rijndael_round_key();
220#ifdef _DEBUG 220#ifdef _DEBUG
221 fprintf( stderr, " installing %d workers on udp socket %ld", worker_count, (unsigned long)sock ); 221 fprintf( stderr, " installing %d workers on udp socket %ld\n", worker_count, (unsigned long)sock );
222#endif 222#endif
223 while( worker_count-- ) 223 while( worker_count-- )
224 pthread_create( &thread_id, NULL, udp_worker, (void *)sock ); 224 pthread_create( &thread_id, NULL, udp_worker, (void *)sock );