From 77e1a2e4becdea8af8230b77a008aca74380bd54 Mon Sep 17 00:00:00 2001 From: Thomas Geymayer Date: Sun, 4 Nov 2012 15:26:41 +0100 Subject: [PATCH] Fix signed/unsigned comparison warning --- simgear/io/HTTPClient.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/io/HTTPClient.cxx b/simgear/io/HTTPClient.cxx index 7531a101..31ea555a 100644 --- a/simgear/io/HTTPClient.cxx +++ b/simgear/io/HTTPClient.cxx @@ -37,7 +37,7 @@ namespace HTTP extern const int DEFAULT_HTTP_PORT = 80; const char* CONTENT_TYPE_URL_ENCODED = "application/x-www-form-urlencoded"; -const int MAX_INFLIGHT_REQUESTS = 32; +const unsigned int MAX_INFLIGHT_REQUESTS = 32; const int ZLIB_DECOMPRESS_BUFFER_SIZE = 32 * 1024; const int ZLIB_INFLATE_WINDOW_BITS = -MAX_WBITS; -- 2.39.5