diff options
author | David CARLIER <devnexen@gmail.com> | 2020-04-12 13:20:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-12 14:20:10 +0200 |
commit | ee4e1936d0d1ca18147d1916e9365578627584e2 (patch) | |
tree | 0bba890eceed13ee58c90b110999396ae16ae958 /src/afl-showmap.c | |
parent | ec677808549c19d22431539ff9a13498c907b4c9 (diff) | |
download | afl++-ee4e1936d0d1ca18147d1916e9365578627584e2.tar.gz |
build on arm64 fix. tested on Android. (#313)
Diffstat (limited to 'src/afl-showmap.c')
-rw-r--r-- | src/afl-showmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-showmap.c b/src/afl-showmap.c index c84fa36c..6c2b2000 100644 --- a/src/afl-showmap.c +++ b/src/afl-showmap.c @@ -720,7 +720,7 @@ int main(int argc, char **argv_orig, char **envp) { } - if (sscanf(optarg, "%llu%c", &fsrv->mem_limit, &suffix) < 1 || + if (sscanf(optarg, "%" PRIu64 "%c", &fsrv->mem_limit, &suffix) < 1 || optarg[0] == '-') FATAL("Bad syntax used for -m"); |