diff options
author | unknown <kostja@bodhi.(none)> | 2007-07-17 01:30:57 +0400 |
---|---|---|
committer | unknown <kostja@bodhi.(none)> | 2007-07-17 01:30:57 +0400 |
commit | b5ad823b65c64c48fa2719a5af3115898396d7b1 (patch) | |
tree | d82efa781cbfc446d729c01b68dacaf3efb56d5d /sql/sql_lex.h | |
parent | 0a5ece1127488ddc1382b9a181c9258c83213be4 (diff) | |
download | mariadb-git-b5ad823b65c64c48fa2719a5af3115898396d7b1.tar.gz |
Fix a build break on 64 bit (uint and size_t are distinct types).
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index 09ace624559..4ac59fbacde 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -1782,7 +1782,7 @@ typedef struct st_lex : public Query_tables_list context_stack.pop(); } - bool copy_db_to(char **p_db, uint *p_db_length) const; + bool copy_db_to(char **p_db, size_t *p_db_length) const; Name_resolution_context *current_context() { |