| 12345678910111213141516 |
- Subject: Fix typo
- Origin: upstream, commit FILE5_47-62-g2866af2e <https://github.com/file/file/commit/FILE5_47-62-g2866af2e>
- Author: Christos Zoulas <christos@zoulas.com>
- Date: Sun Apr 19 20:19:20 2026 +0000
- --- a/src/swap.h
- +++ b/src/swap.h
- @@ -36,7 +36,7 @@
- #if defined(HAVE_BYTESWAP_H)
- #define file_swap2(x) bswap_16(x)
- #define file_swap4(x) bswap_32(x)
- -#define swap8(x) bswap_64(x)
- +#define file_swap8(x) bswap_64(x)
- #elif defined(HAVE_SYS_BSWAP_H)
- #define file_swap2(x) bswap16(x)
- #define file_swap4(x) bswap32(x)
|