diff options
author | Georgi Kodinov <Georgi.Kodinov@Oracle.com> | 2011-06-06 13:27:05 +0300 |
---|---|---|
committer | Georgi Kodinov <Georgi.Kodinov@Oracle.com> | 2011-06-06 13:27:05 +0300 |
commit | 7ae92503c74c1843374146e8346fffc9568f1290 (patch) | |
tree | f80a8d59e73e10503ad4a34b6a4cc7ee6e7782e4 /client/mysqltest.cc | |
parent | 9e2b7fa7d5f0cbe4920be5567314b6de1af660a4 (diff) | |
download | mariadb-git-7ae92503c74c1843374146e8346fffc9568f1290.tar.gz |
Fixed cast warnings in introducing the pluggable authentication client
options.
Diffstat (limited to 'client/mysqltest.cc')
-rw-r--r-- | client/mysqltest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysqltest.cc b/client/mysqltest.cc index a6bd80059c1..77289b3380f 100644 --- a/client/mysqltest.cc +++ b/client/mysqltest.cc @@ -6423,7 +6423,7 @@ static struct my_option my_long_options[] = &opt_connect_timeout, &opt_connect_timeout, 0, GET_UINT, REQUIRED_ARG, 120, 0, 3600 * 12, 0, 0, 0}, {"plugin_dir", OPT_PLUGIN_DIR, "Directory for client-side plugins.", - (uchar**) &opt_plugin_dir, (uchar**) &opt_plugin_dir, 0, + &opt_plugin_dir, &opt_plugin_dir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0}, { 0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0} }; |