Fix warnings when building in release mode

This commit is contained in:
2025-09-21 03:33:14 -07:00
parent 0b2e5f2366
commit 96c4d9eecb
2 changed files with 8 additions and 8 deletions

View File

@ -358,7 +358,7 @@ DECLARE_FUNCTION(settail, (LispVal * pair, LispVal *tail));
size_t list_length(LispVal *obj);
static inline LispVal *const_list(bool do_ref, int len, ...) {
LispVal *list = Qnil;
LispVal *end;
LispVal *end = Qnil;
va_list args;
va_start(args, len);
while (len--) {