diff options
author | Sergey Vojtovich <svoj@mariadb.org> | 2014-12-19 23:42:22 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2014-12-19 23:42:22 +0400 |
commit | 260727adc6d1b805e6854315c3a18d3a30138bc6 (patch) | |
tree | 043b0252331347e5f94871606838acd6c8daf6be /client | |
parent | 094640c036a333c0f2b6f909b01a0ca39997f716 (diff) | |
download | mariadb-git-260727adc6d1b805e6854315c3a18d3a30138bc6.tar.gz |
Fixed yet another compiler warning.
Diffstat (limited to 'client')
-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 6ead479b94e..9b925d6bfb8 100644 --- a/client/mysqltest.cc +++ b/client/mysqltest.cc @@ -5883,7 +5883,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; |