diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2019-12-31 22:41:45 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2019-12-31 22:41:45 +0200 |
commit | 00517d125cc26ecece0eebb84c1c3975cd19bee0 (patch) | |
tree | 7594f2692ad92e8115ce91e6030032171161368c /src/liblzma/lz | |
parent | Rename read32ne to aligned_read32ne, and similarly for the others. (diff) | |
download | xz-00517d125cc26ecece0eebb84c1c3975cd19bee0.tar.xz |
Rename unaligned_read32ne to read32ne, and similarly for the others.
Diffstat (limited to 'src/liblzma/lz')
-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 \ |