1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fixed compiler errors (i.e. changed C++-isms into C)

This commit is contained in:
pem@mysql.comhem.se
2005-06-29 14:23:43 +02:00
parent 3df73db1cf
commit 6fd1e8227e
2 changed files with 3 additions and 3 deletions

View File

@ -2398,6 +2398,7 @@ static int dump_selected_tables(char *db, char **table_names, int tables)
char new_table_name[NAME_LEN];
DYNAMIC_STRING lock_tables_query;
HASH dump_tables;
char *table_name;
DBUG_ENTER("dump_selected_tables");
@ -2457,7 +2458,6 @@ static int dump_selected_tables(char *db, char **table_names, int tables)
print_xml_tag1(md_result_file, "", "database name=", db, "\n");
/* Dump each selected table */
const char *table_name;
for (i= 0; i < dump_tables.records; i++)
{
table_name= hash_element(&dump_tables, i);