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 | bc246b62c0c783257a59970c9945cc62e9fa0890 (patch) | |
tree | 75cdd3ab90580bca4d718cb794f8fbf4be7da612 /sql-common | |
parent | c7b12ecc6e065a8d7e1327843234f84f0571f231 (diff) | |
download | mariadb-git-bc246b62c0c783257a59970c9945cc62e9fa0890.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) { |