diff options
author | Georgi Kodinov <Georgi.Kodinov@Oracle.com> | 2011-04-29 11:33:17 +0300 |
---|---|---|
committer | Georgi Kodinov <Georgi.Kodinov@Oracle.com> | 2011-04-29 11:33:17 +0300 |
commit | 00c239558e8266dca9065306fae301e4c550d467 (patch) | |
tree | 75cdd3ab90580bca4d718cb794f8fbf4be7da612 /sql-common | |
parent | 843cee8a30341a7152b523b24559df35e2de31bf (diff) | |
download | mariadb-git-00c239558e8266dca9065306fae301e4c550d467.tar.gz |
Addendum to the fix for bug #12325444
Removed STDCALL from the function definition.
Diffstat (limited to 'sql-common')
-rw-r--r-- | sql-common/client_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql-common/client_plugin.c b/sql-common/client_plugin.c index 47409e34d9a..382f14c6b3d 100644 --- a/sql-common/client_plugin.c +++ b/sql-common/client_plugin.c @@ -460,7 +460,7 @@ mysql_client_find_plugin(MYSQL *mysql, const char *name, int type) /* see <mysql/client_plugin.h> for a full description */ -int STDCALL mysql_plugin_options(struct st_mysql_client_plugin *plugin, +int mysql_plugin_options(struct st_mysql_client_plugin *plugin, const char *option, const void *value) { |