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

This commit is contained in:
ceriel 1988-04-25 15:31:58 +00:00
parent 7586aabf7d
commit ca8e3270fc

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