diff options
| author | amallia <me@antoniomallia.it> | 2017-06-15 20:56:12 +0100 | 
|---|---|---|
| committer | amallia <me@antoniomallia.it> | 2017-06-15 20:59:37 +0100 | 
| commit | 3c32344a41b1c9a7d6daccc2c54cf70b4dfd4d5b (patch) | |
| tree | 22cbcd7fb62507192413961282bb6a03107f62c3 /hiredis.c | |
| parent | 97cd8157f74674c722dd30360caac1f498fa72ef (diff) | |
| download | hiredict-3c32344a41b1c9a7d6daccc2c54cf70b4dfd4d5b.tar.xz | |
Small fixes
Diffstat (limited to 'hiredis.c')
| -rw-r--r-- | hiredis.c | 3 | 
1 files changed, 1 insertions, 2 deletions
| @@ -1007,9 +1007,8 @@ void *redisvCommand(redisContext *c, const char *format, va_list ap) {  void *redisCommand(redisContext *c, const char *format, ...) {      va_list ap; -    void *reply = NULL;      va_start(ap,format); -    reply = redisvCommand(c,format,ap); +    void *reply = redisvCommand(c,format,ap);      va_end(ap);      return reply;  } | 
