about summary refs log tree commit diff
diff options
context:
space:
mode:
authorhexcoder- <heiko@hexco.de>2020-10-06 21:56:17 +0200
committerhexcoder- <heiko@hexco.de>2020-10-06 21:56:17 +0200
commitf519fff7bc1674d269a8a209a07f4629d3c8ceb8 (patch)
tree239d8ea8ffb055feb31cfd34d6eb172a2bad81ff
parent231420775f6d1cfadc5b3a10fdb4268c8177380c (diff)
downloadafl++-f519fff7bc1674d269a8a209a07f4629d3c8ceb8.tar.gz
fix compiler warning on 32-bit platforms
-rw-r--r--instrumentation/compare-transform-pass.so.cc2
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) {