From 67b7840a5d4d8165733d3f06499f5472e05e5a5e Mon Sep 17 00:00:00 2001 From: Jilles Tjoelker Date: Thu, 29 May 2014 23:23:50 +0200 Subject: [PATCH] ircd_parser: Fix inconsistent declaration of yyerror(). --- src/ircd_parser.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ircd_parser.y b/src/ircd_parser.y index e8df7653e..40465186e 100644 --- a/src/ircd_parser.y +++ b/src/ircd_parser.y @@ -26,7 +26,7 @@ #define YY_NO_UNPUT int yyparse(void); -int yyerror(const char *); +void yyerror(const char *); int yylex(void); static time_t conf_find_time(char*);