diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2019-12-31 00:41:28 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2019-12-31 00:47:49 +0200 |
commit | 7136f1735c60ac6967c4b8e277fcde53d485234f (patch) | |
tree | 97cbabc12a7877ac133ee039257befa1d97fd26b /src/liblzma/lz/lz_encoder_hash.h | |
parent | Rename read32ne to aligned_read32ne, and similarly for the others. (diff) | |
download | xz-7136f1735c60ac6967c4b8e277fcde53d485234f.tar.xz |
Rename unaligned_read32ne to read32ne, and similarly for the others.
Diffstat (limited to '')
-rw-r--r-- | src/liblzma/lz/lz_encoder_hash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/lz/lz_encoder_hash.h b/src/liblzma/lz/lz_encoder_hash.h index f238f9d9..fb15c581 100644 --- a/src/liblzma/lz/lz_encoder_hash.h +++ b/src/liblzma/lz/lz_encoder_hash.h @@ -39,7 +39,7 @@ // Endianness doesn't matter in hash_2_calc() (no effect on the output). #ifdef TUKLIB_FAST_UNALIGNED_ACCESS # define hash_2_calc() \ - const uint32_t hash_value = unaligned_read16ne(cur) + const uint32_t hash_value = read16ne(cur) #else # define hash_2_calc() \ const uint32_t hash_value \ |