Skip to content
This repository has been archived by the owner on Feb 20, 2021. It is now read-only.

Commit

Permalink
Comment.
Browse files Browse the repository at this point in the history
added a note in case 32bit support will be brought back.
  • Loading branch information
enricogior committed Jun 10, 2015
1 parent bf260ec commit fb63c21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/replication.c
Expand Up @@ -1035,7 +1035,7 @@ void readSyncBulkPayload(aeEventLoop *el, int fd, void *privdata, int mask) {
"MASTER <-> SLAVE sync: receiving streamed RDB from master");
} else {
usemark = 0;
server.repl_transfer_size = IF_WIN32(strtoll,strtol)(buf+1,NULL,10);
server.repl_transfer_size = IF_WIN32(strtoll,strtol)(buf+1,NULL,10); /* BUGBUG: verify for 32bit support */
redisLog(REDIS_NOTICE,
"MASTER <-> SLAVE sync: receiving %lld bytes from master",
(PORT_LONGLONG) server.repl_transfer_size);
Expand Down

0 comments on commit fb63c21

Please sign in to comment.