Fix misleading indentation.

This commit is contained in:
Con Kolivas 2018-03-09 17:29:01 +11:00
parent 0e76d5d67c
commit 74b735ab68

View file

@ -795,9 +795,10 @@ bool decompress_file(rzip_control *control)
}
}
if ( STDOUT )
if (unlikely(!open_tmpoutbuf(control)))
return false;
if (STDOUT) {
if (unlikely(!open_tmpoutbuf(control)))
return false;
}
if (!STDIN) {
if (unlikely(!read_magic(control, fd_in, &expected_size)))