fixed; va_end(list) should be va_end(ap)

This commit is contained in:
ceriel 1988-04-25 15:31:58 +00:00
parent 093a970d7f
commit 6607dc999e

View 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);
}