Skip to content

Commit 4a03d0a

Browse files
committed
fix indent
1 parent 6b74c1f commit 4a03d0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/common.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ static lzma_vli find_file_index(void **bdatap) {
122122
lzma_vli loc = lzma_index_uncompressed_size(gIndex) - 1;
123123
if (lzma_index_iter_locate(&iter, loc))
124124
die("Can't locate file index block");
125-
if (iter.stream.number != 1)
125+
if (iter.stream.number != 1)
126126
return 0; // Too many streams for one file index
127127

128128
void *bdata = decode_file_index_start(iter.block.compressed_file_offset,
@@ -310,7 +310,7 @@ static lzma_index *next_index(off_t *pos) {
310310
if (fseeko(gInFile, *pos, SEEK_SET) == -1)
311311
die("Error seeking to index");
312312

313-
lzma_stream strm = LZMA_STREAM_INIT;
313+
lzma_stream strm = LZMA_STREAM_INIT;
314314
lzma_index *index;
315315
if (lzma_index_decoder(&strm, &index, MEMLIMIT) != LZMA_OK)
316316
die("Error creating index decoder");

0 commit comments

Comments
 (0)