Commit 85f53e46 authored by Sachin Setiya's avatar Sachin Setiya

Fix BuildBot Failure.

In some slave like p8-xenial-bintar-debug we are using C90 standard
which does not allow declaration and code to be mixed.
parent b0bae66b
......@@ -85,8 +85,9 @@ static wsrep_status_t dummy_options_set(
static char* dummy_options_get (wsrep_t* w)
{
char * opt;
WSREP_DBUG_ENTER(w);
char * opt= WSREP_DUMMY(w)->options;
opt= WSREP_DUMMY(w)->options;
return opt ? strdup(opt) : NULL;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment