Fix signed/unsigned comparison warning

This commit is contained in:
Thomas Geymayer 2012-11-04 15:26:41 +01:00
parent b99f53fda3
commit 77e1a2e4be

View File

@ -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;