From ca8e3270fce7bd36c6edc0ec3818ec9e2a14302d 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 9d8239ea..b13de5fb 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); }