From c2c09113e5598ae87dcf470cb85aaf1a62d03ba4 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 19 Apr 2021 07:03:47 +1200 Subject: [PATCH] heimdal: use correct prototype of yyparse() As noted in 92c6891c368cae5c2402727c1f66f1c60778199d in upstream Heimdal yyparse() returns an int. Signed-off-by: Andrew Bartlett Reviewed-by: Douglas Bagnall --- source4/heimdal/lib/com_err/compile_et.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/heimdal/lib/com_err/compile_et.c b/source4/heimdal/lib/com_err/compile_et.c index 59a9d33e418..d66851f1b5f 100644 --- a/source4/heimdal/lib/com_err/compile_et.c +++ b/source4/heimdal/lib/com_err/compile_et.c @@ -45,7 +45,7 @@ int numerror; extern FILE *yyin; -extern void yyparse(void); +extern int yyparse(void); long base_id; int number; -- 2.47.3