Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
rebase: replace incorrect logical negation by correct bitwise one
[gitweb.git]
/
builtin
/
rebase.c
diff --git
a/builtin/rebase.c
b/builtin/rebase.c
index b5c99ec10c200a5fccb293c0acadae80642f2808..58607a20192b51f60023e77e5b3d73793015f986 100644
(file)
--- a/
builtin/rebase.c
+++ b/
builtin/rebase.c
@@
-653,7
+653,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;
}