making 'CFLAGS="-m32" make source-only tests' work

This commit is contained in:
hexcoder-
2020-03-28 09:31:30 +01:00
parent a0dec909e7
commit 4ad885001a
7 changed files with 17 additions and 7 deletions

View File

@ -30815,7 +30815,7 @@ size_t copy_list(uint8_t *ptr, word lispval, size_t max) {
lispval = G(lispval, 2); // list = cdr(list)
}
if (lispval != INULL && max == 0) {
printf("ERROR: lisp return value was not a proper list. Trailing %lu\n", lispval);
printf("ERROR: lisp return value was not a proper list. Trailing %lu\n", (unsigned long)lispval);
}
return n;
}