From e33efb50867d74ca2684739bf3a5ff4a284689ec Mon Sep 17 00:00:00 2001 From: Dirk Engling Date: Sun, 9 May 2021 00:00:55 +0200 Subject: Add newline to debug string --- ot_udp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) { 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 ); -- cgit v1.2.3