if (C == '$') {
NextChar ();
if (!isxdigit (C)) {
- Error ("%s(%u): Hex digit expected", CfgName, InputLine);
+ Error ("%s(%u): Hex digit expected", CfgGetName(), InputLine);
}
CfgIVal = 0;
while (isxdigit (C)) {
break;
default:
- Error ("%s(%u): Invalid character `%c'", CfgName, InputLine, C);
+ Error ("%s(%u): Invalid character `%c'", CfgGetName(), InputLine, C);
}
}
}
/* Not found or no identifier */
- Error ("%s(%u): %s expected", CfgName, InputLine, Name);
+ Error ("%s(%u): %s expected", CfgGetName(), InputLine, Name);
}