fixed; va_end(list) should be va_end(ap)
authorceriel <none@none>
Mon, 25 Apr 1988 15:31:58 +0000 (15:31 +0000)
committerceriel <none@none>
Mon, 25 Apr 1988 15:31:58 +0000 (15:31 +0000)
lang/cem/libcc/stdio/printf.c

index 9d8239e..b13de5f 100644 (file)
@@ -13,5 +13,5 @@ va_dcl
        _doprnt (fmt, ap, stdout);
        if ( io_testflag(stdout,IO_PERPRINTF) )
                fflush(stdout);
-       va_end(list);
+       va_end(ap);
 }