summaryrefslogtreecommitdiff
path: root/builtin/commit.c
diff options
context:
space:
mode:
authorStefan Beller <stefanbeller@googlemail.com>2013-08-07 07:32:25 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-08-07 15:30:30 (GMT)
commit05efb7b7575dd60a5997a0f7616d0cc222c5dbf8 (patch)
tree0559afa5de8bde8c6b1c9a94c452d8e3d517dcfe /builtin/commit.c
parentf90220755064c74e1e98d49814cb93a4ce0d0ca1 (diff)
downloadgit-05efb7b7575dd60a5997a0f7616d0cc222c5dbf8.zip
git-05efb7b7575dd60a5997a0f7616d0cc222c5dbf8.tar.gz
git-05efb7b7575dd60a5997a0f7616d0cc222c5dbf8.tar.bz2
branch, commit, name-rev: ease up boolean conditions
Now that the variables are set by OPT_BOOL, which makes sure to have the values being 0 or 1 after parsing, we do not need the double negation to map any other value to 1 for integer variables. Signed-off-by: Stefan Beller <stefanbeller@googlemail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/commit.c')
-rw-r--r--builtin/commit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/commit.c b/builtin/commit.c
index c20426b..b0f86c8 100644
--- a/builtin/commit.c
+++ b/builtin/commit.c
@@ -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."));