aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-11-27 23:54:51 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-11-27 23:54:51 +0300
commit42dd288259ee016007c78d756e0a76c6071bbca0 (patch)
treef5cd14b08dcf426ac8f1e0f4084fe20c22c69ee4
parent561cc184f14c46c28ff5938c6105097c77d1e6de (diff)
downloadlibmicrohttpd-42dd288259ee016007c78d756e0a76c6071bbca0.tar.gz
libmicrohttpd-42dd288259ee016007c78d756e0a76c6071bbca0.zip
Fixed compiler warning
-rw-r--r--src/microhttpd/daemon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 8f3d47b4..abe40e72 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -175,7 +175,7 @@ static int mhd_winsock_inited_ = 0;
175 * Do nothing - global initialisation is 175 * Do nothing - global initialisation is
176 * performed by library constructor. 176 * performed by library constructor.
177 */ 177 */
178#define MHD_check_global_init_(x) (void)0 178#define MHD_check_global_init_() (void)0
179#else /* ! _AUTOINIT_FUNCS_ARE_SUPPORTED */ 179#else /* ! _AUTOINIT_FUNCS_ARE_SUPPORTED */
180/** 180/**
181 * Track global initialisation 181 * Track global initialisation