Skip to content

Commit

Permalink
MDEV-9527 build FAILs with GCC 5.1 with release supported "-std=c+11"
Browse files Browse the repository at this point in the history
10.1 part of the fix
  • Loading branch information
vuvova committed Mar 21, 2016
1 parent 3b0c7ac commit e984159
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sql/wsrep_sst.cc
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,7 @@ static int sst_donate_mysqldump (const char* addr,
host, port, mysqld_port, mysqld_unix_port,
wsrep_defaults_file, uuid_str,
(long long)seqno, wsrep_gtid_domain_id,
bypass ? " "WSREP_SST_OPT_BYPASS : "");
bypass ? " " WSREP_SST_OPT_BYPASS : "");

if (ret < 0 || ret >= cmd_len)
{
Expand Down Expand Up @@ -1220,7 +1220,7 @@ static int sst_donate_other (const char* method,
wsrep_defaults_file,
binlog_opt, binlog_opt_val,
uuid, (long long) seqno, wsrep_gtid_domain_id,
bypass ? " "WSREP_SST_OPT_BYPASS : "");
bypass ? " " WSREP_SST_OPT_BYPASS : "");
my_free(binlog_opt_val);

if (ret < 0 || ret >= cmd_len)
Expand Down

0 comments on commit e984159

Please sign in to comment.