hash-object: replace stdin parsing OPT_BOOLEAN by OPT_COUNTUP
[gitweb.git] / builtin / commit.c
index c20426b766f424d93dd603dac364ffea9fd0777f..b0f86c872b04df40296da86d1b44b1ab7790ab8e 100644 (file)
@@ -1072,7 +1072,7 @@ static int parse_and_validate_options(int argc, const char *argv[],
        if (patch_interactive)
                interactive = 1;
 
-       if (!!also + !!only + !!all + !!interactive > 1)
+       if (also + only + all + interactive > 1)
                die(_("Only one of --include/--only/--all/--interactive/--patch can be used."));
        if (argc == 0 && (also || (only && !amend)))
                die(_("No paths with --include/--only does not make sense."));