diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-11-15 12:54:45 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-11-15 12:54:45 +0200 |
commit | e330fb7e6b8162894280c8a3dc22fdc05cd2d85e (patch) | |
tree | 8a6180f0dc70234415825a70baa09e408a8ccc86 /src/liblzma/lz/lz_decoder.c | |
parent | Add lzma_physmem(). (diff) | |
download | xz-e330fb7e6b8162894280c8a3dc22fdc05cd2d85e.tar.xz |
Fix wrong indentation caused by incorrect settings
in the text editor.
Diffstat (limited to '')
-rw-r--r-- | src/liblzma/lz/lz_decoder.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/liblzma/lz/lz_decoder.c b/src/liblzma/lz/lz_decoder.c index e91ad81c..350b1f89 100644 --- a/src/liblzma/lz/lz_decoder.c +++ b/src/liblzma/lz/lz_decoder.c @@ -39,15 +39,15 @@ struct lzma_coder_s { /// marker. This may become true before next_finished becomes true. bool this_finished; - /// Temporary buffer needed when the LZ-based filter is not the last - /// filter in the chain. The output of the next filter is first - /// decoded into buffer[], which is then used as input for the actual - /// LZ-based decoder. - struct { - size_t pos; - size_t size; - uint8_t buffer[LZMA_BUFFER_SIZE]; - } temp; + /// Temporary buffer needed when the LZ-based filter is not the last + /// filter in the chain. The output of the next filter is first + /// decoded into buffer[], which is then used as input for the actual + /// LZ-based decoder. + struct { + size_t pos; + size_t size; + uint8_t buffer[LZMA_BUFFER_SIZE]; + } temp; }; |