mirror of
https://github.com/MariaDB/server.git
synced 2026-05-10 17:14:30 +02:00
Added some missing casts and changed a define for alloca().
This commit is contained in:
parent
8564322500
commit
0f7639ba15
3 changed files with 6 additions and 5 deletions
|
|
@ -2321,9 +2321,9 @@ static int dump_selected_tables(char *db, char **table_names, int tables)
|
|||
{
|
||||
const char *table_name= hash_element(&dump_tables, i);
|
||||
DBUG_PRINT("info",("Dumping table %s", table_name));
|
||||
numrows= getTableStructure(table_name, db);
|
||||
numrows= getTableStructure((char*) table_name, db);
|
||||
if (!dFlag && numrows > 0)
|
||||
dumpTable(numrows, table_name);
|
||||
dumpTable(numrows, (char*) table_name);
|
||||
}
|
||||
hash_free(&dump_tables);
|
||||
my_free(order_by, MYF(MY_ALLOW_ZERO_PTR));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue