From c542db95be66e6db56dba1c54551ffca9afdf584 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Tue, 24 Nov 2009 13:36:01 -0800 Subject: Fixed broken yyerrorf. It was still taking char *, and passing that as an object to vformat, resulting in # output. --- parser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'parser.h') diff --git a/parser.h b/parser.h index 2a19a349..3b58193b 100644 --- a/parser.h +++ b/parser.h @@ -33,4 +33,4 @@ extern val spec_file_str; int yyparse(void); val get_spec(void); void yyerrorf(val s, ...); -void yybadtoken(int tok, const char *context); +void yybadtoken(int tok, val context); -- cgit v1.2.3