summaryrefslogtreecommitdiff
path: root/sql/sql_plugin.cc
diff options
context:
space:
mode:
authorTor Didriksen <tor.didriksen@oracle.com>2010-12-02 08:14:43 +0100
committerTor Didriksen <tor.didriksen@oracle.com>2010-12-02 08:14:43 +0100
commit71c32129bd7932f79bcf443f48669526e3992818 (patch)
tree583e4fbb0563c58d11c64769b28e39c7d4cc2135 /sql/sql_plugin.cc
parentbfb43fb44f070e72ac971c1295bcfe525afa23af (diff)
downloadmariadb-git-71c32129bd7932f79bcf443f48669526e3992818.tar.gz
BUG#58246 post-push fix broken DBG build.
Diffstat (limited to 'sql/sql_plugin.cc')
-rw-r--r--sql/sql_plugin.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/sql_plugin.cc b/sql/sql_plugin.cc
index d8423fd153b..03a729258ca 100644
--- a/sql/sql_plugin.cc
+++ b/sql/sql_plugin.cc
@@ -374,7 +374,8 @@ static st_plugin_dl *plugin_dl_add(const LEX_STRING *dl, int report)
struct st_plugin_dl *tmp, plugin_dl;
void *sym;
DBUG_ENTER("plugin_dl_add");
- DBUG_PRINT("enter", ("dl->str: '%s', dl->length: %d", dl->str, dl->length));
+ DBUG_PRINT("enter", ("dl->str: '%s', dl->length: %d",
+ dl->str, (int) dl->length));
plugin_dir_len= strlen(opt_plugin_dir);
/*
Ensure that the dll doesn't have a path.