aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/lzma/lzma2_encoder.c
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2009-11-15 12:54:45 +0200
committerLasse Collin <lasse.collin@tukaani.org>2009-11-15 12:54:45 +0200
commite330fb7e6b8162894280c8a3dc22fdc05cd2d85e (patch)
tree8a6180f0dc70234415825a70baa09e408a8ccc86 /src/liblzma/lzma/lzma2_encoder.c
parentAdd lzma_physmem(). (diff)
downloadxz-e330fb7e6b8162894280c8a3dc22fdc05cd2d85e.tar.xz
Fix wrong indentation caused by incorrect settings
in the text editor.
Diffstat (limited to 'src/liblzma/lzma/lzma2_encoder.c')
-rw-r--r--src/liblzma/lzma/lzma2_encoder.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/liblzma/lzma/lzma2_encoder.c b/src/liblzma/lzma/lzma2_encoder.c
index aa3216cc..eda4aa9f 100644
--- a/src/liblzma/lzma/lzma2_encoder.c
+++ b/src/liblzma/lzma/lzma2_encoder.c
@@ -274,9 +274,9 @@ static lzma_ret
lzma2_encoder_options_update(lzma_coder *coder, const lzma_filter *filter)
{
// New options can be set only when there is no incomplete chunk.
- // This is the case at the beginning of the raw stream and right
- // after LZMA_SYNC_FLUSH.
- if (filter->options == NULL || coder->sequence != SEQ_INIT)
+ // This is the case at the beginning of the raw stream and right
+ // after LZMA_SYNC_FLUSH.
+ if (filter->options == NULL || coder->sequence != SEQ_INIT)
return LZMA_PROG_ERROR;
// Look if there are new options. At least for now,