aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/lzma/lzma_decoder.c
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2019-12-31 22:41:45 +0200
committerLasse Collin <lasse.collin@tukaani.org>2019-12-31 22:41:45 +0200
commit00517d125cc26ecece0eebb84c1c3975cd19bee0 (patch)
tree7594f2692ad92e8115ce91e6030032171161368c /src/liblzma/lzma/lzma_decoder.c
parentRename read32ne to aligned_read32ne, and similarly for the others. (diff)
downloadxz-00517d125cc26ecece0eebb84c1c3975cd19bee0.tar.xz
Rename unaligned_read32ne to read32ne, and similarly for the others.
Diffstat (limited to '')
-rw-r--r--src/liblzma/lzma/lzma_decoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/lzma/lzma_decoder.c b/src/liblzma/lzma/lzma_decoder.c
index 9af500f0..e605a0a9 100644
--- a/src/liblzma/lzma/lzma_decoder.c
+++ b/src/liblzma/lzma/lzma_decoder.c
@@ -1049,7 +1049,7 @@ lzma_lzma_props_decode(void **options, const lzma_allocator *allocator,
// All dictionary sizes are accepted, including zero. LZ decoder
// will automatically use a dictionary at least a few KiB even if
// a smaller dictionary is requested.
- opt->dict_size = unaligned_read32le(props + 1);
+ opt->dict_size = read32le(props + 1);
opt->preset_dict = NULL;
opt->preset_dict_size = 0;