Correct va_end usage.

Thanks to: Sean McNeil
MFC after: 3 days
This commit is contained in:
Tim Kientzle 2004-08-27 03:52:29 +00:00
parent db9e0127da
commit 20192d1959
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=134368

View File

@ -63,6 +63,9 @@ version_etc_va (FILE *stream,
n_authors = 0;
while (va_arg (tmp_authors, const char *) != NULL)
++n_authors;
#ifdef va_copy
va_end (tmp_authors);
#endif
}
if (command_name)