From 8bb12792bd42eda0a6df2eaf157996deee478b57 Mon Sep 17 00:00:00 2001 From: Gang Zhuo Date: Mon, 7 Mar 2016 03:50:34 -0500 Subject: [PATCH] fix build warning --- hashtable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hashtable.c b/hashtable.c index e3673666..7a6e8b63 100644 --- a/hashtable.c +++ b/hashtable.c @@ -150,7 +150,7 @@ static int table_set_item(HashtableNode **table, int real_capacity, const char * if (p) { if (pHasOld) (*pHasOld) = 1; if (pOldVal) (*pOldVal) = p->value; - p->key = key; + //p->key = key; p->value = value; return 0; }