diff options
author | Oran Agra <oran@redislabs.com> | 2023-05-15 13:08:15 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-15 13:08:15 +0300 |
commit | a51eb05b1895babb17c37c36b963e2bcbd5496d5 (patch) | |
tree | 7be24b09e0a5621a03e9f9ffe9ef27fcb44d8345 /src/cluster.c | |
parent | e26a769d9627ebecb8607375580970a740348956 (diff) | |
parent | 986dbf716e0cb904c80bb444635cea3242859cc1 (diff) | |
download | redis-7.2.tar.gz |
Diffstat (limited to 'src/cluster.c')
-rw-r--r-- | src/cluster.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cluster.c b/src/cluster.c index b20225c8b..69029164e 100644 --- a/src/cluster.c +++ b/src/cluster.c @@ -126,7 +126,7 @@ dictType clusterNodesBlackListDictType = { NULL /* allow to expand */ }; -static ConnectionType *connTypeOfCluster() { +static ConnectionType *connTypeOfCluster(void) { if (server.tls_cluster) { return connectionTypeTls(); } @@ -2321,18 +2321,18 @@ uint32_t getAlignedPingExtSize(uint32_t dataSize) { return sizeof(clusterMsgPingExt) + EIGHT_BYTE_ALIGN(dataSize); } -uint32_t getHostnamePingExtSize() { +uint32_t getHostnamePingExtSize(void) { if (sdslen(myself->hostname) == 0) { return 0; } return getAlignedPingExtSize(sdslen(myself->hostname) + 1); } -uint32_t getShardIdPingExtSize() { +uint32_t getShardIdPingExtSize(void) { return getAlignedPingExtSize(sizeof(clusterMsgPingExtShardId)); } -uint32_t getForgottenNodeExtSize() { +uint32_t getForgottenNodeExtSize(void) { return getAlignedPingExtSize(sizeof(clusterMsgPingExtForgottenNode)); } @@ -5559,7 +5559,7 @@ void clusterReplyMultiBulkSlots(client * c) { setDeferredArrayLen(c, slot_replylen, num_masters); } -sds genClusterInfoString() { +sds genClusterInfoString(void) { sds info = sdsempty(); char *statestr[] = {"ok","fail"}; int slots_assigned = 0, slots_ok = 0, slots_pfail = 0, slots_fail = 0; |