aboutsummaryrefslogtreecommitdiffstats
path: root/include/jemalloc/internal/ckh.h
diff options
context:
space:
mode:
authorChristopher Ferris <cferris@google.com>2016-02-20 10:26:17 -0800
committerJason Evans <jasone@canonware.com>2016-02-20 10:26:17 -0800
commiteffaf7d40fba191386162e907195b0198c75866a (patch)
tree1ea34c0a67e1987652d833e6baabbc9692a3f50e /include/jemalloc/internal/ckh.h
parenta0aaad1afa8c1c4b30bf15c6b8744084ffc32055 (diff)
downloadplatform_external_jemalloc_new-effaf7d40fba191386162e907195b0198c75866a.tar.gz
platform_external_jemalloc_new-effaf7d40fba191386162e907195b0198c75866a.tar.bz2
platform_external_jemalloc_new-effaf7d40fba191386162e907195b0198c75866a.zip
Fix a typo in the ckh_search() prototype.
Diffstat (limited to 'include/jemalloc/internal/ckh.h')
-rw-r--r--include/jemalloc/internal/ckh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/jemalloc/internal/ckh.h b/include/jemalloc/internal/ckh.h
index 45fb3455..f75ad90b 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]);