diff options
| author | 2020-06-10 17:47:55 +0200 | |
|---|---|---|
| committer | 2020-06-10 17:47:55 +0200 | |
| commit | 048936d2b0358ba184b5380751744b8516fd74d1 (patch) | |
| tree | 23adb826e64a1eda34df5c8effb54e3f026abdcb /colorize.c | |
| parent | de43ee678c8b820dc190b312c4fa62cdb98bbcc8 (diff) | |
| download | colorize-048936d2b0358ba184b5380751744b8516fd74d1.tar.gz colorize-048936d2b0358ba184b5380751744b8516fd74d1.tar.bz2  | |
Merge multiple vfprintf_fail() calls for --clean[-all]
Diffstat (limited to 'colorize.c')
| -rw-r--r-- | colorize.c | 9 | 
1 files changed, 1 insertions, 8 deletions
@@ -412,14 +412,7 @@ main (int argc, char **argv)          if (clean && clean_all)            vfprintf_fail (formats[FMT_GENERIC], "--clean and --clean-all switch are mutually exclusive");          if (arg_cnt > 1) -          { -            const char *const format = "%s %s"; -            const char *const message = "switch cannot be used with more than one file"; -            if (clean) -              vfprintf_fail (format, "--clean", message); -            else if (clean_all) -              vfprintf_fail (format, "--clean-all", message); -          } +          vfprintf_fail ("--clean%s switch cannot be used with more than one file", clean_all ? "-all" : "");          {            unsigned int i;            const struct option_set {  | 
