diff options
author | unknown <bar@gw.udmsearch.izhnet.ru> | 2002-04-16 18:21:53 +0500 |
---|---|---|
committer | unknown <bar@gw.udmsearch.izhnet.ru> | 2002-04-16 18:21:53 +0500 |
commit | 32ac1ef044428947f6396a47c275d06975133c8c (patch) | |
tree | 9d3d4cb0010ffe42bd6da318ef8e07ddec657d75 /include/hash.h | |
parent | 7be6a76520c5e1f72f9d8324d266aa91b6e8ea24 (diff) | |
download | mariadb-git-32ac1ef044428947f6396a47c275d06975133c8c.tar.gz |
Some fixes after merging changes from 4.0
include/hash.h:
Monty forgot to add H in left part of macros
mysys/hash.c:
I wonder how it happened that my_bool disappeared
sql/sql_acl.cc:
Somebody forgot )
sql/sql_class.h:
I wonder how it happened that this line disappeared
sql/sql_table.cc:
small typo
sql/sql_yacc.yy:
Having ; is more compatible
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 a4afe03fb59..0635d2fd7fc 100644 --- a/include/hash.h +++ b/include/hash.h @@ -44,7 +44,7 @@ typedef struct st_hash { CHARSET_INFO *charset; } HASH; -#define hash_init(A,B,C,D,E,F,G) _hash_init(A,B,C,D,E,F,G, H CALLER_INFO) +#define hash_init(A,B,C,D,E,F,G,H) _hash_init(A,B,C,D,E,F,G, H CALLER_INFO) my_bool _hash_init(HASH *hash, CHARSET_INFO *charset, uint default_array_elements, uint key_offset, uint key_length, hash_get_key get_key, |