libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 7a2a93b4a1cb49b5f8377aa4d8420f24c27ae311
parent 6621c055572524f5f247cd200ff7291c161f8b87
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Tue, 24 Aug 2021 16:05:51 +0300

Fixed typo in 6621c055572524f5f247cd200ff7291c161f8b87

Diffstat:
Msrc/microhttpd/mhd_assert.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/microhttpd/mhd_assert.h b/src/microhttpd/mhd_assert.h @@ -31,10 +31,10 @@ #include "mhd_options.h" -#if ! deifned(_DEBUG) && ! defined(NDEBUG) +#if ! defined(_DEBUG) && ! defined(NDEBUG) #define NDEBUG 1 /* Use NDEBUG by default */ #endif /* !_DEBUG && !NDEBUG */ -#if deifned(_DEBUG) && defined(NDEBUG) +#if defined(_DEBUG) && defined(NDEBUG) #error Both _DEBUG and NDEBUG are defined #endif /* _DEBUG && NDEBUG */ #ifdef NDEBUG