libmicrohttpd2

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

commit 53e835337a91ae75b640a572cb6568cf734d6241
parent f9171a8841782087931077d3ae85be4132034f6e
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date:   Thu, 25 Dec 2025 15:31:03 +0100

mhd_align.h: fixed copy-paste error

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 @@ -94,7 +94,7 @@ /* Provide a limited set of alignment macros */ /* The set could be extended as needed */ #define mhd_UINT32_ALIGN mhd_ALIGNOF (uint_least32_t) -#define mhd_UINT64_ALIGN mhd_ALIGNOF (uint_least32_t) +#define mhd_UINT64_ALIGN mhd_ALIGNOF (uint_least64_t) #define mhd_UINT_FAST32_ALIGN mhd_ALIGNOF (uint_fast32_t)