diff options
author | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2022-09-09 14:00:50 +0300 |
---|---|---|
committer | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2022-09-11 18:40:21 +0300 |
commit | 3432eaad2afd31972e7218686470e530011152d5 (patch) | |
tree | 9e0dd712e097ac529866037becd545b1896b0ae2 | |
parent | 070947d809d65a22967ee486af5e26d48bae7b21 (diff) | |
download | libmicrohttpd-3432eaad2afd31972e7218686470e530011152d5.tar.gz libmicrohttpd-3432eaad2afd31972e7218686470e530011152d5.zip |
mhd_bithelpers: Fixed typo in comment
-rw-r--r-- | src/microhttpd/mhd_bithelpers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/mhd_bithelpers.h b/src/microhttpd/mhd_bithelpers.h index 5cfcc846..5a201537 100644 --- 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) | |||
140 | if (0 != ((uintptr_t) dst) % (_MHD_UINT64_ALIGN)) | 140 | if (0 != ((uintptr_t) dst) % (_MHD_UINT64_ALIGN)) |
141 | _MHD_PUT_64BIT_LE_SLOW (dst, value); | 141 | _MHD_PUT_64BIT_LE_SLOW (dst, value); |
142 | else | 142 | else |
143 | #endif /* ! _MHD_PUT_64BIT_BE_UNALIGNED */ | 143 | #endif /* ! _MHD_PUT_64BIT_LE_UNALIGNED */ |
144 | _MHD_PUT_64BIT_LE (dst, value); | 144 | _MHD_PUT_64BIT_LE (dst, value); |
145 | } | 145 | } |
146 | 146 | ||