diff options
author | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-10-07 17:35:31 +0200 |
---|---|---|
committer | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-10-07 17:35:31 +0200 |
commit | e5dd32d809b46a300e14f8cd1422b5a0d817a680 (patch) | |
tree | 25a3a35ef03230c1a52f4c3a1ed0d5b8130a68fb /hiredis.c | |
parent | 5c7b5fca4d36fbf5050a1b36e9308fdd8bf5813c (diff) |
Add const qualifier to privdata pointer for command callbacks
Diffstat (limited to 'hiredis.c')
-rw-r--r-- | hiredis.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -806,7 +806,7 @@ void *redisCommand(redisContext *c, const char *format, ...) { * Always returns NULL. In a non-blocking context this will never fail because * this function does not do any I/O. In a blocking context this function will * have no effect (a callback in a blocking context makes no sense). */ -void *redisCommandWithCallback(redisContext *c, redisCallbackFn *fn, void *privdata, const char *format, ...) { +void *redisCommandWithCallback(redisContext *c, redisCallbackFn *fn, const void *privdata, const char *format, ...) { va_list ap; sds cmd; int status; |