diff options
author | Tor Didriksen <tor.didriksen@oracle.com> | 2010-12-02 08:14:43 +0100 |
---|---|---|
committer | Tor Didriksen <tor.didriksen@oracle.com> | 2010-12-02 08:14:43 +0100 |
commit | d56a6dd02792e9a6bd5d0a644feb152f4cdae0a1 (patch) | |
tree | 583e4fbb0563c58d11c64769b28e39c7d4cc2135 /sql/sql_plugin.cc | |
parent | 9c87ae9ba767edea57f7a9c6203a67f11318b772 (diff) | |
download | mariadb-git-d56a6dd02792e9a6bd5d0a644feb152f4cdae0a1.tar.gz |
BUG#58246 post-push fix broken DBG build.
Diffstat (limited to 'sql/sql_plugin.cc')
-rw-r--r-- | sql/sql_plugin.cc | 3 |
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. |