aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/mhd_assert.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/mhd_assert.h')
-rw-r--r--src/microhttpd/mhd_assert.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/mhd_assert.h b/src/microhttpd/mhd_assert.h
index 6113646f..f74eca51 100644
--- a/src/microhttpd/mhd_assert.h
+++ b/src/microhttpd/mhd_assert.h
@@ -31,10 +31,10 @@
31 31
32#include "mhd_options.h" 32#include "mhd_options.h"
33 33
34#if ! deifned(_DEBUG) && ! defined(NDEBUG) 34#if ! defined(_DEBUG) && ! defined(NDEBUG)
35#define NDEBUG 1 /* Use NDEBUG by default */ 35#define NDEBUG 1 /* Use NDEBUG by default */
36#endif /* !_DEBUG && !NDEBUG */ 36#endif /* !_DEBUG && !NDEBUG */
37#if deifned(_DEBUG) && defined(NDEBUG) 37#if defined(_DEBUG) && defined(NDEBUG)
38#error Both _DEBUG and NDEBUG are defined 38#error Both _DEBUG and NDEBUG are defined
39#endif /* _DEBUG && NDEBUG */ 39#endif /* _DEBUG && NDEBUG */
40#ifdef NDEBUG 40#ifdef NDEBUG