diff options
author | unknown <acurtis@xiphis.org> | 2006-04-24 14:32:45 -0700 |
---|---|---|
committer | unknown <acurtis@xiphis.org> | 2006-04-24 14:32:45 -0700 |
commit | f00d16a3325e5c28edfdb5aa9f1c4bf82d1fe1f9 (patch) | |
tree | 2b0a325ef689aa115e3396354d11016e3f7e8a86 /sql/sql_plugin.cc | |
parent | 1260bc887358d3fc4c060b21eb1c755c3f5dee69 (diff) | |
download | mariadb-git-f00d16a3325e5c28edfdb5aa9f1c4bf82d1fe1f9.tar.gz |
WL#3201
post-merge fixes
Diffstat (limited to 'sql/sql_plugin.cc')
-rw-r--r-- | sql/sql_plugin.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_plugin.cc b/sql/sql_plugin.cc index 249ce6c9823..01faae22c57 100644 --- a/sql/sql_plugin.cc +++ b/sql/sql_plugin.cc @@ -531,7 +531,7 @@ static int plugin_initialize(struct st_plugin_int *plugin) switch (plugin->plugin->type) { case MYSQL_STORAGE_ENGINE_PLUGIN: - if (ha_initialize_handlerton((handlerton*) plugin->plugin->info)) + if (ha_initialize_handlerton(plugin)) { sql_print_error("Plugin '%s' handlerton init returned error.", plugin->name.str); |