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:
Jeffrey Altman
2020-05-27 02:17:50 -04:00
committed by Jeffrey Altman
parent 662dfbb38b
commit c6213fc894

View File

@@ -669,7 +669,7 @@ heim_config_parse_file_multi(heim_context context,
out:
config_include_depth--;
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)
ret = 0;
}