summaryrefslogtreecommitdiff
path: root/async.h
diff options
context:
space:
mode:
authorPieter Noordhuis <pcnoordhuis@gmail.com>2010-11-01 13:21:26 +0100
committerPieter Noordhuis <pcnoordhuis@gmail.com>2010-11-01 13:21:26 +0100
commitb673f0cfb375240091178f8b39ea0a6b16ea91fc (patch)
treed01eea5a2f3f4e9422b9624dff6caed532f39648 /async.h
parent4b530833c6fc872aa33f7113637b85381d11d446 (diff)
Change prototype of async reply callback
Diffstat (limited to 'async.h')
-rw-r--r--async.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/async.h b/async.h
index 3f29c10..2e14b13 100644
--- a/async.h
+++ b/async.h
@@ -34,7 +34,7 @@
struct redisAsyncContext; /* need forward declaration of redisAsyncContext */
/* Reply callback prototype and container */
-typedef void (redisCallbackFn)(struct redisAsyncContext*, redisReply*, void*);
+typedef void (redisCallbackFn)(struct redisAsyncContext*, void*, void*);
typedef struct redisCallback {
struct redisCallback *next; /* simple singly linked list */
redisCallbackFn *fn;