Commit dfcc20f4 authored by Guy Benoish's avatar Guy Benoish
Browse files

Fix compiler warning in restoreCommand

parent cf7fcdbe
...@@ -4835,7 +4835,7 @@ void dumpCommand(client *c) { ...@@ -4835,7 +4835,7 @@ void dumpCommand(client *c) {
/* RESTORE key ttl serialized-value [REPLACE] */ /* RESTORE key ttl serialized-value [REPLACE] */
void restoreCommand(client *c) { void restoreCommand(client *c) {
long long ttl, lfu_freq = -1, lru_idle = -1, lru_clock; long long ttl, lfu_freq = -1, lru_idle = -1, lru_clock = -1;
rio payload; rio payload;
int j, type, replace = 0, absttl = 0; int j, type, replace = 0, absttl = 0;
robj *obj; robj *obj;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment