From 11abb03e85d6580699c4760e0267a972f78e6c03 Mon Sep 17 00:00:00 2001 From: erdgeist <> Date: Wed, 31 Jan 2007 02:19:17 +0000 Subject: size_t cant get < 0 and thus wont report errors --- opentracker.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'opentracker.c') diff --git a/opentracker.c b/opentracker.c index a5c3db9..164cce8 100644 --- a/opentracker.c +++ b/opentracker.c @@ -449,7 +449,7 @@ static void help( char *name ) { static void handle_read( const int64 clientsocket ) { struct http_data* h = io_getcookie( clientsocket ); - size_t l; + int64 l; if( ( l = io_tryread( clientsocket, static_inbuf, sizeof static_inbuf ) ) <= 0 ) { if( h ) { -- cgit v1.2.3