diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2008-12-31 16:29:39 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2008-12-31 16:29:39 +0200 |
commit | 322ecf93c961e45a1da8c4a794a7fdacefcd7f40 (patch) | |
tree | 3fc5fbae174d255bdebced50f0695d08db0cb927 /src/liblzma/simple/simple_decoder.c | |
parent | Fixed missing quoting in configure.ac. (diff) | |
download | xz-322ecf93c961e45a1da8c4a794a7fdacefcd7f40.tar.xz |
Renamed lzma_options_simple to lzma_options_bcj in the API.
The internal implementation is still using the name "simple".
It may need some cleanups, so I look at it later.
Diffstat (limited to 'src/liblzma/simple/simple_decoder.c')
-rw-r--r-- | src/liblzma/simple/simple_decoder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/liblzma/simple/simple_decoder.c b/src/liblzma/simple/simple_decoder.c index 30dc7c57..d7c17e2f 100644 --- a/src/liblzma/simple/simple_decoder.c +++ b/src/liblzma/simple/simple_decoder.c @@ -30,8 +30,8 @@ lzma_simple_props_decode(void **options, lzma_allocator *allocator, if (props_size != 4) return LZMA_OPTIONS_ERROR; - lzma_options_simple *opt = lzma_alloc( - sizeof(lzma_options_simple), allocator); + lzma_options_bcj *opt = lzma_alloc( + sizeof(lzma_options_bcj), allocator); if (opt == NULL) return LZMA_MEM_ERROR; |