Skip to content

Commit

Permalink
Match printf format with actual type in genRedisInfoString().
Browse files Browse the repository at this point in the history
  • Loading branch information
antirez committed Sep 10, 2012
1 parent 74e57d0 commit 978e517
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/redis.c
Expand Up @@ -1989,7 +1989,7 @@ sds genRedisInfoString(char *section) {
"aof_base_size:%lld\r\n"
"aof_pending_rewrite:%d\r\n"
"aof_buffer_length:%zu\r\n"
"aof_rewrite_buffer_length:%zu\r\n"
"aof_rewrite_buffer_length:%lu\r\n"
"aof_pending_bio_fsync:%llu\r\n"
"aof_delayed_fsync:%lu\r\n",
(long long) server.aof_current_size,
Expand Down

0 comments on commit 978e517

Please sign in to comment.