diff options
author | hexcoder- <heiko@hexco.de> | 2020-10-06 21:56:17 +0200 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-10-06 21:56:17 +0200 |
commit | f519fff7bc1674d269a8a209a07f4629d3c8ceb8 (patch) | |
tree | 239d8ea8ffb055feb31cfd34d6eb172a2bad81ff | |
parent | 231420775f6d1cfadc5b3a10fdb4268c8177380c (diff) | |
download | afl++-f519fff7bc1674d269a8a209a07f4629d3c8ceb8.tar.gz |
fix compiler warning on 32-bit platforms
-rw-r--r-- | instrumentation/compare-transform-pass.so.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/instrumentation/compare-transform-pass.so.cc b/instrumentation/compare-transform-pass.so.cc index 3a4abd6e..de8b97f0 100644 --- a/instrumentation/compare-transform-pass.so.cc +++ b/instrumentation/compare-transform-pass.so.cc @@ -340,7 +340,7 @@ bool CompareTransform::transformCmps(Module &M, const bool processStrcmp, if (!calls.size()) return false; if (!be_quiet) printf( - "Replacing %lu calls to strcmp/memcmp/strncmp/strcasecmp/strncasecmp\n", + "Replacing %zu calls to strcmp/memcmp/strncmp/strcasecmp/strncasecmp\n", calls.size()); for (auto &callInst : calls) { |