summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorMichael Widenius <monty@mariadb.org>2014-12-19 09:25:29 +0200
committerMichael Widenius <monty@mariadb.org>2014-12-19 09:25:29 +0200
commitbc21e7a67f33b19d9d7a9002a5aec589f39120fd (patch)
tree301ae7877494e31ae904aff820e5ce381cffdf9e /client
parent826d7c68d210f5c34998108aa5e29909344e3683 (diff)
downloadmariadb-git-bc21e7a67f33b19d9d7a9002a5aec589f39120fd.tar.gz
Fixed compiler warnings
scripts/mysql_system_tables.sql: Removed DEFAULT from a blob definition as this can cause problems.
Diffstat (limited to 'client')
-rw-r--r--client/mysqltest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysqltest.cc b/client/mysqltest.cc
index 02a075cf9b4..9b7a6e8fd19 100644
--- a/client/mysqltest.cc
+++ b/client/mysqltest.cc
@@ -5908,7 +5908,7 @@ void do_connect(struct st_command *command)
{
int con_port= opt_port;
char *con_options;
- char *ssl_cipher= 0;
+ char *ssl_cipher __attribute__((unused))= 0;
my_bool con_ssl= 0, con_compress= 0;
my_bool con_pipe= 0;
my_bool con_shm __attribute__ ((unused))= 0;