From 244201f6ba9e69da64bb73243d972dee658f74b9 Mon Sep 17 00:00:00 2001 From: antirez Date: Mon, 25 Oct 2010 10:54:37 +0200 Subject: [PATCH] added a missing prototype from syncio.c in redis.h --- src/redis.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/redis.h b/src/redis.h index 9cec4c46..5aa85388 100644 --- a/src/redis.h +++ b/src/redis.h @@ -700,6 +700,7 @@ int syncReadLine(int fd, char *ptr, ssize_t size, int timeout); int fwriteBulkString(FILE *fp, char *s, unsigned long len); int fwriteBulkDouble(FILE *fp, double d); int fwriteBulkLongLong(FILE *fp, long long l); +int fwriteBulkObject(FILE *fp, robj *obj); /* Replication */ void replicationFeedSlaves(list *slaves, int dictid, robj **argv, int argc);