Skip to content

Commit

Permalink
redis-cli: add missing newline in error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
antirez committed Oct 15, 2014
1 parent 5ba47b5 commit 93eed9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/redis-cli.c
Original file line number Diff line number Diff line change
Expand Up @@ -1511,7 +1511,7 @@ static void findBigKeys(void) {
for(i=0;i<TYPE_NONE; i++) {
maxkeys[i] = sdsempty();
if(!maxkeys[i]) {
fprintf(stderr, "Failed to allocate memory for largest key names!");
fprintf(stderr, "Failed to allocate memory for largest key names!\n");
exit(1);
}
}
Expand Down

0 comments on commit 93eed9a

Please sign in to comment.