diff options
author | unknown <konstantin@mysql.com> | 2005-01-11 13:57:07 +0300 |
---|---|---|
committer | unknown <konstantin@mysql.com> | 2005-01-11 13:57:07 +0300 |
commit | 194937169f340d35a36ef74def972e1699df477c (patch) | |
tree | cc91a207b7d8ef564d4c6b5a3798093817a39738 /include/hash.h | |
parent | 4801c2e62f25240d7c27818cbc46568b07709d68 (diff) | |
download | mariadb-git-194937169f340d35a36ef74def972e1699df477c.tar.gz |
Followup: rename the declaration (hash_reset -> my_hash_reset)
Diffstat (limited to 'include/hash.h')
-rw-r--r-- | include/hash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hash.h b/include/hash.h index cd7210a290c..9a6d91036e1 100644 --- a/include/hash.h +++ b/include/hash.h @@ -47,7 +47,7 @@ my_bool _hash_init(HASH *hash, CHARSET_INFO *charset, uint key_length, hash_get_key get_key, void (*free_element)(void*), uint flags CALLER_INFO_PROTO); void hash_free(HASH *tree); -void hash_reset(HASH *hash); +void my_hash_reset(HASH *hash); byte *hash_element(HASH *hash,uint idx); gptr hash_search(HASH *info,const byte *key,uint length); gptr hash_next(HASH *info,const byte *key,uint length); |