1
0
mirror of git://erdgeist.org/opentracker synced 2025-02-04 19:16:23 +00:00

Remove debug message

This commit is contained in:
erdgeist 2009-01-16 02:28:54 +00:00
parent f12fa4c362
commit 0b875273d4

View File

@ -217,8 +217,8 @@ static void server_mainloop( ) {
handle_accept( sock );
else if( (intptr_t)cookie == FLAG_UDP )
handle_udp6( sock, &ws );
else if( (intptr_t)cookie == FLAG_SELFPIPE ) { printf( "woke up\n" );
io_tryread( sock, ws.inbuf, G_INBUF_SIZE ); }
else if( (intptr_t)cookie == FLAG_SELFPIPE )
io_tryread( sock, ws.inbuf, G_INBUF_SIZE );
else
handle_read( sock, &ws );
}