diff options
author | Stefan Beller <stefanbeller@googlemail.com> | 2013-08-07 09:32:25 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-08-07 08:30:30 -0700 |
commit | 05efb7b7575dd60a5997a0f7616d0cc222c5dbf8 (patch) | |
tree | 0559afa5de8bde8c6b1c9a94c452d8e3d517dcfe /builtin/name-rev.c | |
parent | checkout: remove superfluous local variable (diff) | |
download | tgif-05efb7b7575dd60a5997a0f7616d0cc222c5dbf8.tar.xz |
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/name-rev.c')
-rw-r--r-- | builtin/name-rev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/name-rev.c b/builtin/name-rev.c index a908a340c6..20fcf8c696 100644 --- a/builtin/name-rev.c +++ b/builtin/name-rev.c @@ -331,7 +331,7 @@ int cmd_name_rev(int argc, const char **argv, const char *prefix) git_config(git_default_config, NULL); argc = parse_options(argc, argv, prefix, opts, name_rev_usage, 0); - if (!!all + !!transform_stdin + !!argc > 1) { + if (all + transform_stdin + !!argc > 1) { error("Specify either a list, or --all, not both!"); usage_with_options(name_rev_usage, opts); } |