mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-06 05:47:13 +02:00
15 lines
476 B
Diff
15 lines
476 B
Diff
The format specifier for size_t is %zu and not %lu. Fixing this to
|
|
prevent issues on 32 bit machines.
|
|
|
|
--- AFLplusplus-4.00c/instrumentation/SanitizerCoverageLTO.so.cc
|
|
+++ AFLplusplus-4.00c/instrumentation/SanitizerCoverageLTO.so.cc
|
|
@@ -1080,7 +1080,7 @@
|
|
}
|
|
|
|
if (!be_quiet)
|
|
- printf("AUTODICTIONARY: %lu string%s found\n", count,
|
|
+ printf("AUTODICTIONARY: %zu string%s found\n", count,
|
|
count == 1 ? "" : "s");
|
|
|
|
if (count) {
|