diff options
author | hf@deer.(none) <> | 2003-09-19 14:44:31 +0500 |
---|---|---|
committer | hf@deer.(none) <> | 2003-09-19 14:44:31 +0500 |
commit | a2dbfaefa366792fd1ed7e0a331212997fe43ceb (patch) | |
tree | 3c07a62a6ce161b611b85e52602cd8585ba0ad6d /sql/hash_filo.h | |
parent | 0868446b3e457e1ce32f63cadff4ef4c8b17344a (diff) | |
download | mariadb-git-a2dbfaefa366792fd1ed7e0a331212997fe43ceb.tar.gz |
SCRUM
embedded library
hash_insert renamed to my_hash_insert to avoid name intersection
with another libraries
is there better idea?
Diffstat (limited to 'sql/hash_filo.h')
-rw-r--r-- | sql/hash_filo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/hash_filo.h b/sql/hash_filo.h index 92cd2658967..d1672e1a60c 100644 --- a/sql/hash_filo.h +++ b/sql/hash_filo.h @@ -116,7 +116,7 @@ public: last_link=last_link->prev_used; hash_delete(&cache,(byte*) tmp); } - if (hash_insert(&cache,(byte*) entry)) + if (my_hash_insert(&cache,(byte*) entry)) { if (free_element) (*free_element)(entry); // This should never happen |