libmicrohttpd2

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

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

mhd_align: fixed macro use on MSVC

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

diff --git a/src/mhd2/mhd_align.h b/src/mhd2/mhd_align.h @@ -101,7 +101,7 @@ #if defined(HAVE_ATTR_ALIGNED) # define mhd_ALIGNED(num) __attribute__((aligned (num))) #elif defined(HAVE_DECLSPEC_ALIGN) -# define mhd_ALIGNED(num) __declspec(align (num))) +# define mhd_ALIGNED(num) __declspec(align (num)) #endif #ifdef HAVE_C_ALIGNAS