diff options
author | Christopher Ferris <cferris@google.com> | 2016-02-20 18:26:17 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2016-02-20 18:26:17 (GMT) |
commit | effaf7d40fba191386162e907195b0198c75866a (patch) | |
tree | 1ea34c0a67e1987652d833e6baabbc9692a3f50e | |
parent | a0aaad1afa8c1c4b30bf15c6b8744084ffc32055 (diff) | |
download | jemalloc-effaf7d40fba191386162e907195b0198c75866a.zip jemalloc-effaf7d40fba191386162e907195b0198c75866a.tar.gz jemalloc-effaf7d40fba191386162e907195b0198c75866a.tar.bz2 |
Fix a typo in the ckh_search() prototype.
-rw-r--r-- | include/jemalloc/internal/ckh.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/jemalloc/internal/ckh.h b/include/jemalloc/internal/ckh.h index 45fb345..f75ad90 100644 --- a/include/jemalloc/internal/ckh.h +++ b/include/jemalloc/internal/ckh.h @@ -72,7 +72,7 @@ bool ckh_iter(ckh_t *ckh, size_t *tabind, void **key, void **data); bool ckh_insert(tsd_t *tsd, ckh_t *ckh, const void *key, const void *data); bool ckh_remove(tsd_t *tsd, ckh_t *ckh, const void *searchkey, void **key, void **data); -bool ckh_search(ckh_t *ckh, const void *seachkey, void **key, void **data); +bool ckh_search(ckh_t *ckh, const void *searchkey, void **key, void **data); void ckh_string_hash(const void *key, size_t r_hash[2]); bool ckh_string_keycomp(const void *k1, const void *k2); void ckh_pointer_hash(const void *key, size_t r_hash[2]); |