]> git.eshelyaron.com Git - emacs.git/commitdiff
(fatal_unexec): Use vfprintf, not _doprnt.
authorRichard M. Stallman <rms@gnu.org>
Fri, 11 Aug 1995 00:26:22 +0000 (00:26 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 11 Aug 1995 00:26:22 +0000 (00:26 +0000)
src/unexalpha.c

index 100cf0aee523b0996f5588d4b5467cc8a28f4985..e71d11e0fe25d49ee58615ccecf4b4c6aad56bc3 100644 (file)
@@ -442,7 +442,7 @@ fatal_unexec (s, va_alist)
   else
     fprintf (stderr, "unexec: %s, ", strerror (errno));
   va_start (ap);
-  _doprnt (s, ap, stderr);
+  vfprintf (stderr, s, ap);
   fputs (".\n", stderr);
   exit (1);
 }