summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <mattiasj@witty.>2008-02-26 07:58:46 +0100
committerunknown <mattiasj@witty.>2008-02-26 07:58:46 +0100
commit2583c281b67ae8cf470266c7438a5852a1bd2265 (patch)
tree6aa04097c9c3a8467e0d25be7404759dc6f83dbe
parentdb9b2bdc1b229e492d0e60761d7f62db1ee0f652 (diff)
downloadmariadb-git-2583c281b67ae8cf470266c7438a5852a1bd2265.tar.gz
Removed compiler warning
(Missed a change of printf format) sql/sql_table.cc: wrong printf type
-rw-r--r--sql/sql_table.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_table.cc b/sql/sql_table.cc
index 3114bbc77b3..5600abfdc87 100644
--- a/sql/sql_table.cc
+++ b/sql/sql_table.cc
@@ -3321,7 +3321,7 @@ bool mysql_create_table_no_lock(THD *thd,
The handler assigned to the table cannot handle partitioning.
Assign the partition handler as the handler of the table.
*/
- DBUG_PRINT("info", ("db_type: %d",
+ DBUG_PRINT("info", ("db_type: %s",
ha_resolve_storage_engine_name(create_info->db_type)));
delete file;
create_info->db_type= partition_hton;