aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-01-22 19:58:04 +0000
committerChristian Grothoff <christian@grothoff.org>2015-01-22 19:58:04 +0000
commit66385ca7a586d1d4a0a68efe4be667d270127f89 (patch)
tree0a4eb369317245008c527794eac7423761921598
parentca1942843f7f8c2904eb4321a69568a6ae45b6e8 (diff)
downloadlibmicrohttpd-66385ca7a586d1d4a0a68efe4be667d270127f89.tar.gz
libmicrohttpd-66385ca7a586d1d4a0a68efe4be667d270127f89.zip
-ensure '1' is interpreted as uint32_t
-rw-r--r--src/include/microhttpd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 1685f146..e1b41d66 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -294,7 +294,7 @@ typedef SOCKET MHD_socket;
294 * with the SHOUTcast "ICY" line instad of "HTTP". 294 * with the SHOUTcast "ICY" line instad of "HTTP".
295 * @ingroup specialized 295 * @ingroup specialized
296 */ 296 */
297#define MHD_ICY_FLAG ((uint32_t)(1 << 31)) 297#define MHD_ICY_FLAG ((uint32_t)(((uint32_t)1) << 31))
298 298
299/** 299/**
300 * @defgroup headers HTTP headers 300 * @defgroup headers HTTP headers