From d592cb74093511f088ec10b0672bccacec41aa58 Mon Sep 17 00:00:00 2001 From: Vitah Lin Date: Thu, 22 May 2025 20:54:37 +0800 Subject: [PATCH] Cleanup redundant declaration of kvstoreDictFetchValue() (#14066) --- src/kvstore.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/kvstore.h b/src/kvstore.h index 3a1295fd4..7ef619d3c 100644 --- a/src/kvstore.h +++ b/src/kvstore.h @@ -106,7 +106,6 @@ void kvstoreDictSetAtLink(kvstore *kvs, int didx, void *kv, dictEntryLink *link, /* dict with distinct key & value (no_value=1) currently is used only by pubsub. */ void kvstoreDictSetKey(kvstore *kvs, int didx, dictEntry* de, void *key); void kvstoreDictSetVal(kvstore *kvs, int didx, dictEntry *de, void *val); -void *kvstoreDictFetchValue(kvstore *kvs, int didx, const void *key); #ifdef REDIS_TEST int kvstoreTest(int argc, char *argv[], int flags);