From e330fb7e6b8162894280c8a3dc22fdc05cd2d85e Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Sun, 15 Nov 2009 12:54:45 +0200 Subject: Fix wrong indentation caused by incorrect settings in the text editor. --- src/liblzma/lzma/lzma2_encoder.c | 6 +++--- src/liblzma/lzma/lzma_encoder_optimum_normal.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/liblzma/lzma') 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, diff --git a/src/liblzma/lzma/lzma_encoder_optimum_normal.c b/src/liblzma/lzma/lzma_encoder_optimum_normal.c index 4e3754b0..5772b449 100644 --- a/src/liblzma/lzma/lzma_encoder_optimum_normal.c +++ b/src/liblzma/lzma/lzma_encoder_optimum_normal.c @@ -531,7 +531,7 @@ helper2(lzma_coder *coder, uint32_t *reps, const uint8_t *buf, const uint32_t cur_and_1_price = cur_price + rc_bit_0_price(coder->is_match[state][pos_state]) + get_literal_price(coder, position, buf[-1], - !is_literal_state(state), match_byte, current_byte); + !is_literal_state(state), match_byte, current_byte); bool next_is_literal = false; -- cgit v1.2.3