use vprintf where appropriate

This commit is contained in:
gwr 1996-02-09 16:10:59 +00:00
parent c9c8301a91
commit b3ba75d64e
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: exit.c,v 1.7 1995/09/18 21:19:25 pk Exp $ */
/* $NetBSD: exit.c,v 1.8 1996/02/09 16:10:59 gwr Exp $ */
/*-
* Copyright (c) 1993 John Brezak
@ -57,7 +57,7 @@ panic(fmt /*, va_alist */)
#else
va_start(ap);
#endif
printf(fmt, ap);
vprintf(fmt, ap);
printf("\n");
va_end(ap);
_rtt();