Skip to content
This repository has been archived by the owner on Dec 16, 2020. It is now read-only.

Commit

Permalink
fix build warning
Browse files Browse the repository at this point in the history
  • Loading branch information
GangZhuo committed Mar 7, 2016
1 parent 3ce5372 commit 8bb1279
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hashtable.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 8bb1279

Please sign in to comment.