changeset 12826:1aad581760b9

(fatal_unexec): Use vfprintf, not _doprnt.
author Richard M. Stallman <rms@gnu.org>
date Fri, 11 Aug 1995 00:26:22 +0000
parents cbc13edaa77d
children b0f8f54fe739
files src/unexalpha.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/unexalpha.c	Fri Aug 11 00:22:47 1995 +0000
+++ b/src/unexalpha.c	Fri Aug 11 00:26:22 1995 +0000
@@ -442,7 +442,7 @@
   else
     fprintf (stderr, "unexec: %s, ", strerror (errno));
   va_start (ap);
-  _doprnt (s, ap, stderr);
+  vfprintf (stderr, s, ap);
   fputs (".\n", stderr);
   exit (1);
 }