diff options
author | erdgeist <> | 2012-04-01 03:23:50 +0000 |
---|---|---|
committer | erdgeist <> | 2012-04-01 03:23:50 +0000 |
commit | 8bf40b6717c5a5bca4bf6c6a1fefe2b1c7d2f29a (patch) | |
tree | 52df5b2062bb0830f606c605fba092394430293f /opentracker.c | |
parent | 09f1234aa917cc4691b21a44445492b5e837b8c8 (diff) |
fix tiny issue
Diffstat (limited to 'opentracker.c')
-rw-r--r-- | opentracker.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opentracker.c b/opentracker.c index 52078b5..442b294 100644 --- a/opentracker.c +++ b/opentracker.c | |||
@@ -266,7 +266,7 @@ static void * server_mainloop( void * args ) { | |||
266 | if( (intptr_t)cookie == FLAG_TCP ) | 266 | if( (intptr_t)cookie == FLAG_TCP ) |
267 | handle_accept( sock ); | 267 | handle_accept( sock ); |
268 | else if( (intptr_t)cookie == FLAG_UDP ) | 268 | else if( (intptr_t)cookie == FLAG_UDP ) |
269 | while( handle_udp6( sock, &ws ) ) {}; | 269 | while( handle_udp6( sock, &ws ) ); |
270 | else if( (intptr_t)cookie == FLAG_SELFPIPE ) | 270 | else if( (intptr_t)cookie == FLAG_SELFPIPE ) |
271 | io_tryread( sock, ws.inbuf, G_INBUF_SIZE ); | 271 | io_tryread( sock, ws.inbuf, G_INBUF_SIZE ); |
272 | else | 272 | else |