Remove va_end call that doesn't appear to be needed (without _copy or _start)

This commit is contained in:
Paul Kulchenko 2021-08-25 18:40:53 -07:00
parent 50937be752
commit 27febe6a7a

View file

@ -101,7 +101,6 @@ void(vflogf)(unsigned level, const char *file, int line, FILE *f,
vflogf_onfail(f); vflogf_onfail(f);
} }
(vfprintf)(f, fmt, va); (vfprintf)(f, fmt, va);
va_end(va);
fputs("\n", f); fputs("\n", f);
if (bufmode == _IOLBF) { if (bufmode == _IOLBF) {
f->bufmode = _IOLBF; f->bufmode = _IOLBF;