diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-05-30 10:50:47 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-05-30 10:50:47 -0700 |
commit | 8feb8e27e733c20a3b88ec4bf3302e9b539f99e7 (patch) | |
tree | 7568faa9902f0af126104fc0c06d10355c92dd71 | |
parent | Merge branch 'es/doc-gitsubmodules-markup' (diff) | |
parent | rebase: replace incorrect logical negation by correct bitwise one (diff) | |
download | tgif-8feb8e27e733c20a3b88ec4bf3302e9b539f99e7.tar.xz |
Merge branch 'js/rebase-config-bitfix'
* js/rebase-config-bitfix:
rebase: replace incorrect logical negation by correct bitwise one
-rw-r--r-- | builtin/rebase.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/rebase.c b/builtin/rebase.c index ba3a574e40..db6ca9bd7d 100644 --- a/builtin/rebase.c +++ b/builtin/rebase.c @@ -1203,7 +1203,7 @@ static int rebase_config(const char *var, const char *value, void *data) if (git_config_bool(var, value)) opts->flags |= REBASE_DIFFSTAT; else - opts->flags &= !REBASE_DIFFSTAT; + opts->flags &= ~REBASE_DIFFSTAT; return 0; } |