summaryrefslogtreecommitdiffstats
path: root/lib/libsqlite3/src/hash.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libsqlite3/src/hash.h')
-rw-r--r--lib/libsqlite3/src/hash.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libsqlite3/src/hash.h b/lib/libsqlite3/src/hash.h
index 82b7c58c710..6dfa4e035c2 100644
--- a/lib/libsqlite3/src/hash.h
+++ b/lib/libsqlite3/src/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*);
/*