fix wrong comment in cluster.h (#8191)

This commit is contained in:
Wen Hui 2020-12-16 16:19:12 -05:00 committed by GitHub
parent 1f42bd7057
commit 4f67d0b647
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,7 +40,7 @@ typedef struct clusterLink {
sds sndbuf; /* Packet send buffer */ sds sndbuf; /* Packet send buffer */
char *rcvbuf; /* Packet reception buffer */ char *rcvbuf; /* Packet reception buffer */
size_t rcvbuf_len; /* Used size of rcvbuf */ size_t rcvbuf_len; /* Used size of rcvbuf */
size_t rcvbuf_alloc; /* Used size of rcvbuf */ size_t rcvbuf_alloc; /* Allocated size of rcvbuf */
struct clusterNode *node; /* Node related to this link if any, or NULL */ struct clusterNode *node; /* Node related to this link if any, or NULL */
} clusterLink; } clusterLink;