Skip to content

Commit c24e6af

Browse files
committed
first
1 parent 288f496 commit c24e6af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hashtable.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
typedef struct _NodeHead{
1212
_32BIT_INT Next; /* This value can be HASHTABLE_NODE_END if this node is a end, HASHTABLE_NODE_UNUSED if this node has been removed, or a non-negative number otherwise. */
13-
_32BIT_INT Prev; /* If this value is negative, it denote the subscript of Slots, Prev == (-1) * (Subscript + 1). A non-negative number otherwise. */
13+
_32BIT_INT Prev; /* If this value is negative, it denotes the subscript of Slots, Prev == (-1) * (Subscript + 1). A non-negative number otherwise. */
1414
}NodeHead;
1515

1616
typedef struct _HashTable{

0 commit comments

Comments
 (0)