diff options
Diffstat (limited to 'src/microhttpd/mhd_bithelpers.h')
-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 | ||