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 | 64b8f99be6711acb4480e4b8b0742f528877add8 (patch) | |
tree | 4cbb63cb25d26c12296965a3f640d90236abeeb8 /src/unexalpha.c | |
parent | 045f778ea09b915b64335646ab2988038ef94726 (diff) | |
download | emacs-64b8f99be6711acb4480e4b8b0742f528877add8.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); } |