aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/internal.h
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-05-16 16:14:52 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-05-16 19:46:30 +0300
commit280aceef91cbd1181eabbe98efdd673a1f769d7c (patch)
tree1a479f0e5c2336cf0481304bda0eec5c137c2877 /src/microhttpd/internal.h
parent2ec6b3c7c94fae62b2dee94f8c0122fafc14423a (diff)
downloadlibmicrohttpd-280aceef91cbd1181eabbe98efdd673a1f769d7c.tar.gz
libmicrohttpd-280aceef91cbd1181eabbe98efdd673a1f769d7c.zip
internal.h: fixed incorrect use of enum value as preprocessor value
Diffstat (limited to 'src/microhttpd/internal.h')
-rw-r--r--src/microhttpd/internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index 26f5d43b..3dafe866 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -739,7 +739,7 @@ enum MHD_TLS_CONN_STATE
739/** 739/**
740 * Should all state transitions be printed to stderr? 740 * Should all state transitions be printed to stderr?
741 */ 741 */
742#define DEBUG_STATES MHD_NO 742#define DEBUG_STATES _MHD_MACRO_NO
743 743
744 744
745#ifdef HAVE_MESSAGES 745#ifdef HAVE_MESSAGES