1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 19:50:24 +02:00

* deprecation.c (scm_c_issue_deprecation_warning_fmt): Add va_end.

* list.c (scm_list_n): Ditto.
This commit is contained in:
Kevin Ryde 2003-07-09 22:08:13 +00:00
parent 11c473571e
commit de90ef0faa

View file

@ -94,6 +94,7 @@ scm_list_n (SCM elt, ...)
pos = SCM_CDRLOC (*pos); pos = SCM_CDRLOC (*pos);
elt = va_arg (foo, SCM); elt = va_arg (foo, SCM);
} }
va_end (foo);
return answer; return answer;
} }