Fix parameter value error

The argumets were given in the wrong order.
This commit is contained in:
Markus Mäkelä
2019-04-05 01:12:42 +03:00
parent b54e67223f
commit aad29404c6

View File

@ -3161,9 +3161,9 @@ static bool check_config_objects(CONFIG_CONTEXT* context)
MXS_ERROR("Invalid value for parameter '%s' for object '%s' " MXS_ERROR("Invalid value for parameter '%s' for object '%s' "
"of type '%s': %s (was expecting %s)", "of type '%s': %s (was expecting %s)",
params->name, params->name,
params->value,
obj->object, obj->object,
type.c_str(), type.c_str(),
params->value,
param_type_to_str(fix_params, params->name)); param_type_to_str(fix_params, params->name));
rval = false; rval = false;
} }