Skip to content

Commit

Permalink
MDEV-13362: Fix -Wset-but-unused
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-m committed Mar 12, 2020
1 parent 28fabc8 commit 0d76777
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/mysqltest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5906,7 +5906,7 @@ void do_connect(struct st_command *command)
int con_port= opt_port;
char *con_options;
char *ssl_cipher __attribute__((unused))= 0;
enum use_ssl con_ssl= USE_SSL_IF_POSSIBLE;
enum use_ssl con_ssl __attribute__((unused))= USE_SSL_IF_POSSIBLE;
my_bool con_compress= 0;
int read_timeout= 0;
int write_timeout= 0;
Expand Down

0 comments on commit 0d76777

Please sign in to comment.