commit 3432eaad2afd31972e7218686470e530011152d5
parent 070947d809d65a22967ee486af5e26d48bae7b21
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Fri, 9 Sep 2022 14:00:50 +0300
mhd_bithelpers: Fixed typo in comment
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/microhttpd/mhd_bithelpers.h b/src/microhttpd/mhd_bithelpers.h
@@ -140,7 +140,7 @@ _MHD_PUT_64BIT_LE_SAFE (void *dst, uint64_t value)
if (0 != ((uintptr_t) dst) % (_MHD_UINT64_ALIGN))
_MHD_PUT_64BIT_LE_SLOW (dst, value);
else
-#endif /* ! _MHD_PUT_64BIT_BE_UNALIGNED */
+#endif /* ! _MHD_PUT_64BIT_LE_UNALIGNED */
_MHD_PUT_64BIT_LE (dst, value);
}