Skip to content

Commit

Permalink
cast raxSize() to avoid warning with format spec.
Browse files Browse the repository at this point in the history
  • Loading branch information
antirez committed Mar 31, 2020
1 parent 9f347fa commit ef1b1f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.c
Original file line number Diff line number Diff line change
Expand Up @@ -3981,7 +3981,7 @@ sds genRedisInfoString(const char *section) {
maxin, maxout,
server.blocked_clients,
server.tracking_clients,
raxSize(server.clients_timeout_table));
(unsigned long long) raxSize(server.clients_timeout_table));
}

/* Memory */
Expand Down

0 comments on commit ef1b1f0

Please sign in to comment.