mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Fix a warning.
This commit is contained in:
@@ -1017,7 +1017,9 @@ sp_show_create_routine(THD *thd, int type, sp_name *name)
|
||||
&thd->sp_proc_cache : &thd->sp_func_cache;
|
||||
|
||||
DBUG_ENTER("sp_show_create_routine");
|
||||
DBUG_PRINT("enter", ("name: %.*s", name->m_name.length, name->m_name.str));
|
||||
DBUG_PRINT("enter", ("name: %.*s",
|
||||
(int) name->m_name.length,
|
||||
name->m_name.str));
|
||||
|
||||
DBUG_ASSERT(type == TYPE_ENUM_PROCEDURE ||
|
||||
type == TYPE_ENUM_FUNCTION);
|
||||
|
||||
Reference in New Issue
Block a user