diff options
Diffstat (limited to '')
-rw-r--r-- | lib/hash.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -28,12 +28,12 @@ struct hash_bucket { */ int len; - /* Linked list. */ - struct hash_bucket *next; - /* Hash key. */ unsigned int key; + /* Linked list. */ + struct hash_bucket *next; + /* Data. */ void *data; }; |