From bd026c7e37fecbd5f64ac9ebc503ffee350a4586 Mon Sep 17 00:00:00 2001 From: Gangbiao Date: Wed, 28 Dec 2016 17:01:56 +0800 Subject: [PATCH] =?UTF-8?q?=E9=94=99=E5=88=AB=E5=AD=97=E6=9B=B4=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit line 465:“那”--->“哪” --- src/dict.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dict.c b/src/dict.c index 18e964e73..be5dc98f6 100644 --- a/src/dict.c +++ b/src/dict.c @@ -462,7 +462,7 @@ dictEntry *dictAddRaw(dict *d, void *key) return NULL; /* Allocate the memory and store the new entry */ - // 决定该把新元素放在那个哈希表 + // 决定该把新元素放在哪个哈希表 ht = dictIsRehashing(d) ? &d->ht[1] : &d->ht[0]; // 为新元素分配节点空间 entry = zmalloc(sizeof(*entry));