From dc088f772d45a81940bb45d7d18f398428d8f7cc Mon Sep 17 00:00:00 2001 From: "Robert G. Jakabosky" Date: Sun, 30 Jan 2022 01:06:02 +0800 Subject: [PATCH] Fix ident. --- src/bin/jp2/opj_decompress.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/jp2/opj_decompress.c b/src/bin/jp2/opj_decompress.c index 7b784fc7..c32cc3dc 100644 --- a/src/bin/jp2/opj_decompress.c +++ b/src/bin/jp2/opj_decompress.c @@ -1498,7 +1498,8 @@ int main(int argc, char **argv) } /* Disable strict mode if we want to decode partial codestreams. */ - if (parameters.allow_partial && !opj_decoder_set_strict_mode(l_codec, OPJ_FALSE)) { + if (parameters.allow_partial && + !opj_decoder_set_strict_mode(l_codec, OPJ_FALSE)) { fprintf(stderr, "ERROR -> opj_decompress: failed to disable strict mode\n"); opj_stream_destroy(l_stream); opj_destroy_codec(l_codec);