]> git.saurik.com Git - redis.git/blobdiff - src/redis.c
typos and minor stuff fixed in the new non blocking replication code
[redis.git] / src / redis.c
index 7aadf0ddc7b98bf0577d39fe1f9d4313d0dee6f2..21a5bd19d9f34da0f4cc5d59bd3fe8f861e41128 100644 (file)
@@ -635,7 +635,7 @@ int serverCron(struct aeEventLoop *eventLoop, long long id, void *clientData) {
 
     /* Replication cron function -- used to reconnect to master and
      * to detect transfer failures. */
-    if (!(loops % 10)) replicationCron(void);
+    if (!(loops % 10)) replicationCron();
 
     return 100;
 }