From 194937169f340d35a36ef74def972e1699df477c Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 11 Jan 2005 13:57:07 +0300 Subject: [PATCH] Followup: rename the declaration (hash_reset -> my_hash_reset) --- include/hash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);