base: heim_conf_parse_file_multi remove extra unused parameter
This call heim_warn(context, ret, "Ignoring", fname); doesn't require the 'fname' paramter. Remove it. Change-Id: Ia339568658306a903a64ff9e098f914e7387bdd7
This commit is contained in:

committed by
Jeffrey Altman

parent
662dfbb38b
commit
c6213fc894
@@ -669,7 +669,7 @@ heim_config_parse_file_multi(heim_context context,
|
|||||||
out:
|
out:
|
||||||
config_include_depth--;
|
config_include_depth--;
|
||||||
if (ret == HEIM_ERR_CONFIG_BADFORMAT || (ret && config_include_depth > 0)) {
|
if (ret == HEIM_ERR_CONFIG_BADFORMAT || (ret && config_include_depth > 0)) {
|
||||||
heim_warn(context, ret, "Ignoring", fname);
|
heim_warn(context, ret, "Ignoring");
|
||||||
if (config_include_depth > 0)
|
if (config_include_depth > 0)
|
||||||
ret = 0;
|
ret = 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user