summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2016-06-15 12:16:39 +0200
committerantirez <antirez@gmail.com>2016-06-15 16:05:39 +0200
commit9942070f5a41fa3bc953e9628a7248aeb7c0befa (patch)
treefa080cac4364b364edb65b79fc98f6a7f24316d6
parentf45fa5d05f47a5729786a69962119c9b3dc12645 (diff)
downloadredis-9942070f5a41fa3bc953e9628a7248aeb7c0befa.tar.gz
Remove additional round brackets from fix for #3282.
-rw-r--r--src/bitops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitops.c b/src/bitops.c
index 8d64f23eb..2312432fc 100644
--- a/src/bitops.c
+++ b/src/bitops.c
@@ -775,7 +775,7 @@ void bitcountCommand(client *c) {
/* Convert negative indexes */
if (start < 0) start = strlen+start;
if (end < 0) end = strlen+end;
- if ((start < 0) && (end < 0) && (start > end)) {
+ if (start < 0 && end < 0 && start > end) {
addReply(c,shared.czero);
return;
}