diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-11-11 20:27:37 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-11-11 20:27:37 +0000 |
commit | a084ed10a862b83fcbc3c1382a48fa70f087124a (patch) | |
tree | 57b22ac09594e8e906c5205dde23cc203ee9ac4a /src/unexalpha.c | |
parent | dc937613b0cbe6ff8cc4c4819e7b93cf05334b6f (diff) | |
download | emacs-a084ed10a862b83fcbc3c1382a48fa70f087124a.tar.gz emacs-a084ed10a862b83fcbc3c1382a48fa70f087124a.tar.bz2 emacs-a084ed10a862b83fcbc3c1382a48fa70f087124a.zip |
(fatal_unexec): Don't use varargs.
Diffstat (limited to 'src/unexalpha.c')
-rw-r--r-- | src/unexalpha.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/unexalpha.c b/src/unexalpha.c index e71d11e0fe2..ac9482d86bd 100644 --- a/src/unexalpha.c +++ b/src/unexalpha.c @@ -432,17 +432,15 @@ mark_x (name) } static void -fatal_unexec (s, va_alist) - char *s; - va_dcl +fatal_unexec (s, arg) + char *s; + char *arg; { - va_list ap; if (errno == EEOF) fputs ("unexec: unexpected end of file, ", stderr); else fprintf (stderr, "unexec: %s, ", strerror (errno)); - va_start (ap); - vfprintf (stderr, s, ap); + fprintf (stderr, s, arg); fputs (".\n", stderr); exit (1); } |