Fixed compilation error for slavelag.c

There was an extra parenthesis left when skygw_log_write was changed to
MXS_ERROR which caused the compilation to fail.
This commit is contained in:
Markus Makela
2015-12-23 06:45:28 +02:00
parent 3358475345
commit aff3f66fa6

View File

@ -217,7 +217,7 @@ int i,cflags = 0;
if(regcomp(&my_instance->nore,my_instance->nomatch,cflags))
{
MXS_ERROR("lagfilter: Failed to compile regex '%s'.",
my_instance->nomatch)));
my_instance->nomatch);
}
}
}