diff options
author | guilhem@mysql.com <> | 2004-11-17 16:41:30 +0100 |
---|---|---|
committer | guilhem@mysql.com <> | 2004-11-17 16:41:30 +0100 |
commit | d34421c12732951b69d47c4f49486918f5c7823e (patch) | |
tree | f6bb7203b6b4d3100aea30e5c3ad49d387ce1fa5 /sql/slave.h | |
parent | 078597564d699289ba76ab211f5c5c685705efa1 (diff) | |
download | mariadb-git-d34421c12732951b69d47c4f49486918f5c7823e.tar.gz |
Fixes for compilation errors in Windows (casts from uint32* to uint*) in repl and charset code.
Moving the part of user_var.test using UCS2 to ctype_ucs.test
Diffstat (limited to 'sql/slave.h')
-rw-r--r-- | sql/slave.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/slave.h b/sql/slave.h index 97f197fb50a..c6cb81699a2 100644 --- a/sql/slave.h +++ b/sql/slave.h @@ -510,7 +510,7 @@ int add_table_rule(HASH* h, const char* table_spec); int add_wild_table_rule(DYNAMIC_ARRAY* a, const char* table_spec); void init_table_rule_hash(HASH* h, bool* h_inited); void init_table_rule_array(DYNAMIC_ARRAY* a, bool* a_inited); -const char *rewrite_db(const char* db, uint *new_db_len); +const char *rewrite_db(const char* db, uint32 *new_db_len); const char *print_slave_db_safe(const char *db); int check_expected_error(THD* thd, RELAY_LOG_INFO* rli, int error_code); void skip_load_data_infile(NET* net); |