From 6607dc999e8846c9ae8c4a3c1b1febfdd39d5460 Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 25 Apr 1988 15:31:58 +0000 Subject: [PATCH] fixed; va_end(list) should be va_end(ap) --- lang/cem/libcc/stdio/printf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/cem/libcc/stdio/printf.c b/lang/cem/libcc/stdio/printf.c index 9d8239ea2..b13de5fb6 100644 --- a/lang/cem/libcc/stdio/printf.c +++ b/lang/cem/libcc/stdio/printf.c @@ -13,5 +13,5 @@ va_dcl _doprnt (fmt, ap, stdout); if ( io_testflag(stdout,IO_PERPRINTF) ) fflush(stdout); - va_end(list); + va_end(ap); } -- 2.34.1