summaryrefslogtreecommitdiff
path: root/lib/conf-parse.y
diff options
context:
space:
mode:
Diffstat (limited to 'lib/conf-parse.y')
-rw-r--r--lib/conf-parse.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/conf-parse.y b/lib/conf-parse.y
index 0ee7de8a..6641253a 100644
--- a/lib/conf-parse.y
+++ b/lib/conf-parse.y
@@ -332,10 +332,10 @@ chip_name: NAME
void sensors_yyerror(const char *err)
{
if (sensors_lex_error[0]) {
- sensors_parse_error(sensors_lex_error,sensors_yylineno);
+ sensors_parse_error_wfn(sensors_lex_error, sensors_yyfilename, sensors_yylineno);
sensors_lex_error[0] = '\0';
} else
- sensors_parse_error(err,sensors_yylineno);
+ sensors_parse_error_wfn(err, sensors_yyfilename, sensors_yylineno);
}
sensors_expr *malloc_expr(void)