Fix parameter value error
The argumets were given in the wrong order.
This commit is contained in:
@ -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;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user