libmicrohttpd2

HTTP server C library (MHD 2.x, alpha)
Log | Files | Refs | README | LICENSE

commit c483604da029aa1605affc174777a0a5636acce8
parent 4de6369dee4a6c919303d3d0dacddffdd189709b
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date:   Wed,  8 Jul 2026 23:07:59 +0200

mhd_limits: fixed macro self-reference

Diffstat:
Msrc/mhd2/mhd_limits.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mhd2/mhd_limits.h b/src/mhd2/mhd_limits.h @@ -101,7 +101,7 @@ #ifndef ULONG_MAX # if defined(mhd_USE_PREDEF_LIMITS) && defined(__ULONG_MAX__) -# define ULONG_MAX ULONG_MAX +# define ULONG_MAX __ULONG_MAX__ # else /* ! __ULONG_MAX__ */ # define ULONG_MAX mhd_UNSIGNED_TYPE_MAX (unsigned long) # endif /* ! __ULONG_MAX__ */