summaryrefslogtreecommitdiff
path: root/src/term.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2011-05-04 00:20:46 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2011-05-04 00:20:46 -0700
commitaab2b9b5abaa4862b2814929c31035e7920f5e21 (patch)
treecabff32181b1853df25a1ba885d35a557f315979 /src/term.c
parentc378da0b47eb8c26fc8da4d89e128ee3c73537de (diff)
* term.c (vfatal): Remove stray call to va_end.
It's not needed and the C Standard doesn't allow it here anyway.
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c
index 9d19b25630..c68228cc51 100644
--- a/src/term.c
+++ b/src/term.c
@@ -3618,7 +3618,6 @@ vfatal (const char *str, va_list ap)
vfprintf (stderr, str, ap);
if (!(strlen (str) > 0 && str[strlen (str) - 1] == '\n'))
fprintf (stderr, "\n");
- va_end (ap);
fflush (stderr);
exit (1);
}