diff options
author | unknown <konstantin@mysql.com> | 2005-01-11 15:32:23 +0300 |
---|---|---|
committer | unknown <konstantin@mysql.com> | 2005-01-11 15:32:23 +0300 |
commit | e7b38aa7bdb2358d047fd66b0cb31fd05c259bb7 (patch) | |
tree | 89ca2321ed6b090a72ce666a436e8e65bfb277b1 /sql/sql_lex.cc | |
parent | 7bf677dd64bd6c1362899bf07aca977f144c5fa4 (diff) | |
download | mariadb-git-e7b38aa7bdb2358d047fd66b0cb31fd05c259bb7.tar.gz |
Fixes for two compile-time failures.
ndb/src/common/transporter/TransporterRegistry.cpp:
make it compile with -ansi -pedantic
sql/sql_lex.cc:
a fix for compile-time failure
Diffstat (limited to 'sql/sql_lex.cc')
-rw-r--r-- | sql/sql_lex.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_lex.cc b/sql/sql_lex.cc index 5929ad5c14b..495fa4a0bd1 100644 --- a/sql/sql_lex.cc +++ b/sql/sql_lex.cc @@ -172,7 +172,7 @@ void lex_start(THD *thd, uchar *buf,uint length) lex->proc_list.first= 0; if (lex->spfuns.records) - hash_reset(&lex->spfuns); + my_hash_reset(&lex->spfuns); } void lex_end(LEX *lex) |