diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-08-11 00:26:22 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-08-11 00:26:22 +0000 |
commit | 62d54af17e95d82bda54a5e941e764d567b92ccd (patch) | |
tree | ef8ca878ed1354d72660b8279a83192e3b255df5 /src/unexalpha.c | |
parent | d734f0fdfd602633e9d850a7426c6791ec0471f6 (diff) | |
download | emacs-62d54af17e95d82bda54a5e941e764d567b92ccd.tar.gz |
(fatal_unexec): Use vfprintf, not _doprnt.
Diffstat (limited to 'src/unexalpha.c')
-rw-r--r-- | src/unexalpha.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unexalpha.c b/src/unexalpha.c index 100cf0aee52..e71d11e0fe2 100644 --- a/src/unexalpha.c +++ b/src/unexalpha.c @@ -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); } |