diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2023-01-24 00:05:38 +0200 |
---|---|---|
committer | Jia Tan <jiat0218@gmail.com> | 2023-01-24 20:20:04 +0800 |
commit | 683a3c7e2fcd922200c31078e5c9dd1348e90941 (patch) | |
tree | c557a14754563d280330086fe8fa0a63b9d23785 /src/xz/args.c | |
parent | xz: Refactor duplicated check for custom suffix when using --format=raw (diff) | |
download | xz-683a3c7e2fcd922200c31078e5c9dd1348e90941.tar.xz |
xz: Flip the return value of suffix_is_set to match the documentation.
Also edit style to match the existing coding style in the project.
Diffstat (limited to '')
-rw-r--r-- | src/xz/args.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xz/args.c b/src/xz/args.c index 3468e276..b831946f 100644 --- a/src/xz/args.c +++ b/src/xz/args.c @@ -726,9 +726,9 @@ args_parse(args_info *args, int argc, char **argv) // If raw format is used and a custom suffix is not provided, // then only stdout mode can be used when compressing or decompressing. - if (opt_format == FORMAT_RAW && suffix_is_set() && !opt_stdout && - (opt_mode == MODE_COMPRESS || - opt_mode == MODE_DECOMPRESS)) + if (opt_format == FORMAT_RAW && !suffix_is_set() && !opt_stdout + && (opt_mode == MODE_COMPRESS + || opt_mode == MODE_DECOMPRESS)) message_fatal(_("With --format=raw, --suffix=.SUF is " "required unless writing to stdout")); |