Fix bitops.c clang-format properly (#570)

ref:
- https://github.com/valkey-io/valkey/pull/118 (my pervious change)
- https://github.com/valkey-io/valkey/pull/461 (issuing that clang
format checker fails due to my change)

There was an issue that clang-format cheker failed.
I don't know why I missed it and why it didn't catch.

just running `clang-format -i bitops.c` was all.

Signed-off-by: LiiNen <kjeonghoon065@gmail.com>
This commit is contained in:
LiiNen 2024-05-29 13:49:50 +09:00 committed by GitHub
parent 96dcd1183a
commit 168da8b52e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -808,10 +808,9 @@ void bitcountCommand(client *c) {
}
}
if (c->argc >= 4) {
if (getLongLongFromObjectOrReply(c,c->argv[3],&end,NULL) != C_OK)
return;
if (getLongLongFromObjectOrReply(c, c->argv[3], &end, NULL) != C_OK) return;
}
/* Lookup, check for type. */
o = lookupKeyRead(c->db, c->argv[1]);
if (checkType(c, o, OBJ_STRING)) return;
@ -821,7 +820,7 @@ void bitcountCommand(client *c) {
/* Make sure we will not overflow */
serverAssert(totlen <= LLONG_MAX >> 3);
if (c->argc < 4) end = totlen-1;
if (c->argc < 4) end = totlen - 1;
/* Convert negative indexes */
if (start < 0 && end < 0 && start > end) {