Skip to content

Commit e984159

Browse files
committed
MDEV-9527 build FAILs with GCC 5.1 with release supported "-std=c+11"
10.1 part of the fix
1 parent 3b0c7ac commit e984159

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/wsrep_sst.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,7 @@ static int sst_donate_mysqldump (const char* addr,
875875
host, port, mysqld_port, mysqld_unix_port,
876876
wsrep_defaults_file, uuid_str,
877877
(long long)seqno, wsrep_gtid_domain_id,
878-
bypass ? " "WSREP_SST_OPT_BYPASS : "");
878+
bypass ? " " WSREP_SST_OPT_BYPASS : "");
879879

880880
if (ret < 0 || ret >= cmd_len)
881881
{
@@ -1220,7 +1220,7 @@ static int sst_donate_other (const char* method,
12201220
wsrep_defaults_file,
12211221
binlog_opt, binlog_opt_val,
12221222
uuid, (long long) seqno, wsrep_gtid_domain_id,
1223-
bypass ? " "WSREP_SST_OPT_BYPASS : "");
1223+
bypass ? " " WSREP_SST_OPT_BYPASS : "");
12241224
my_free(binlog_opt_val);
12251225

12261226
if (ret < 0 || ret >= cmd_len)

0 commit comments

Comments
 (0)