Skip to content

Commit bccc458

Browse files
committed
Fix: removed two spaces to pass the format test'
Signed-off-by: Hanxi Zhang <hanxizh@amazon.com>
1 parent 5672499 commit bccc458

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/t_hash.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1211,12 +1211,12 @@ void hsetexCommand(client *c) {
12111211

12121212
/* Check NX/XX key-level conditions before creating a new object */
12131213
if ((flags & ARGS_SET_NX) && o != NULL) {
1214-
addReply(c, shared.czero); // NX fails if key exists
1214+
addReply(c, shared.czero); // NX fails if key exists
12151215
return;
12161216
}
12171217

12181218
if ((flags & ARGS_SET_XX) && o == NULL) {
1219-
addReply(c, shared.czero); // XX fails if key does not exist
1219+
addReply(c, shared.czero); // XX fails if key does not exist
12201220
return;
12211221
}
12221222

0 commit comments

Comments
 (0)