diff options
author | hexcoder- <heiko@hexco.de> | 2020-03-28 09:31:30 +0100 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-04-01 13:10:06 +0200 |
commit | 23d9649aec7a7d74082debdb9f6fa2f5ffca7268 (patch) | |
tree | 5ec002b1390c85d60e9c581cd5be8ca0cb4df7bd /src | |
parent | 738a245c3eed6ad360591e58cce757c90fb3f490 (diff) | |
download | afl++-23d9649aec7a7d74082debdb9f6fa2f5ffca7268.tar.gz |
making 'CFLAGS="-m32" make source-only tests' work
Diffstat (limited to 'src')
-rw-r--r-- | src/third_party/libradamsa/libradamsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/third_party/libradamsa/libradamsa.c b/src/third_party/libradamsa/libradamsa.c index f3677fa7..fe91594e 100644 --- a/src/third_party/libradamsa/libradamsa.c +++ b/src/third_party/libradamsa/libradamsa.c @@ -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; } |