commit a066a34138c38d702b9f335f22f320cfc795ccda
parent b5de085bf1d99572ad25008752483c3253d42eb5
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Mon, 13 Sep 2021 19:14:39 +0300
mhd_align.h: fixed copy-paste error
Alignment of uint64_t was incorrect
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/microhttpd/mhd_align.h b/src/microhttpd/mhd_align.h
@@ -76,7 +76,7 @@ struct _mhd_dummy_uint32_offset_test
struct _mhd_dummy_uint64_offset_test
{
char dummy;
- uint32_t ui64;
+ uint64_t ui64;
};
#define _MHD_UINT64_ALIGN \
_MHD_OFFSETOF(struct _mhd_dummy_uint64_offset_test, ui64)