mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-20 21:25:43 +00:00
nits
This commit is contained in:
2
afl-cmin
2
afl-cmin
@ -425,7 +425,7 @@ BEGIN {
|
|||||||
cmd = "stat --version 2>/dev/null"
|
cmd = "stat --version 2>/dev/null"
|
||||||
cmd | getline statversion
|
cmd | getline statversion
|
||||||
close(cmd)
|
close(cmd)
|
||||||
if (statversion ~ /GNU coreutils/) {
|
if (statversion ~ /GNU coreutils/ || statversion ~ /BusyBox/) {
|
||||||
stat_format = "-c '%s %n'" # GNU
|
stat_format = "-c '%s %n'" # GNU
|
||||||
} else {
|
} else {
|
||||||
stat_format = "-f '%z %N'" # *BSD, MacOS
|
stat_format = "-f '%z %N'" # *BSD, MacOS
|
||||||
|
@ -1081,7 +1081,7 @@ bool ModuleSanitizerCoverageLTO::instrumentModule(
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!be_quiet)
|
if (!be_quiet)
|
||||||
printf("AUTODICTIONARY: %lu string%s found\n", count,
|
printf("AUTODICTIONARY: %zu string%s found\n", count,
|
||||||
count == 1 ? "" : "s");
|
count == 1 ? "" : "s");
|
||||||
|
|
||||||
if (count) {
|
if (count) {
|
||||||
|
Reference in New Issue
Block a user