Index: third_party/sqlite/src/src/hash.h |
diff --git a/third_party/sqlite/src/src/hash.h b/third_party/sqlite/src/src/hash.h |
index 990a2d6e22d17859ab8edc513380135d63b1f46f..6dfa4e035c26e0e5530f2cb09251a2a201339220 100644 |
--- a/third_party/sqlite/src/src/hash.h |
+++ b/third_party/sqlite/src/src/hash.h |
@@ -9,7 +9,7 @@ |
** May you share freely, never taking more than you give. |
** |
************************************************************************* |
-** This is the header file for the generic hash-table implemenation |
+** This is the header file for the generic hash-table implementation |
** used in SQLite. |
*/ |
#ifndef _SQLITE_HASH_H_ |
@@ -59,15 +59,15 @@ struct Hash { |
struct HashElem { |
HashElem *next, *prev; /* Next and previous elements in the table */ |
void *data; /* Data associated with this element */ |
- const char *pKey; int nKey; /* Key associated with this element */ |
+ const char *pKey; /* Key associated with this element */ |
}; |
/* |
** Access routines. To delete, insert a NULL pointer. |
*/ |
void sqlite3HashInit(Hash*); |
-void *sqlite3HashInsert(Hash*, const char *pKey, int nKey, void *pData); |
-void *sqlite3HashFind(const Hash*, const char *pKey, int nKey); |
+void *sqlite3HashInsert(Hash*, const char *pKey, void *pData); |
+void *sqlite3HashFind(const Hash*, const char *pKey); |
void sqlite3HashClear(Hash*); |
/* |