aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoraflpp <aflpp@aflplus.plus>2020-09-06 11:40:41 +0200
committeraflpp <aflpp@aflplus.plus>2020-09-06 11:40:41 +0200
commit8ec41b2585390c54256dd823e1beafd6246d9976 (patch)
tree30550b7267dd19eb2d5ded24c57f0a615b13880b /src
parentbd007c151d88b1ff392e396c4946b98fc95e20fc (diff)
downloadafl++-8ec41b2585390c54256dd823e1beafd6246d9976.tar.gz
fix various warnings
Diffstat (limited to 'src')
-rw-r--r--src/afl-cc.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/afl-cc.c b/src/afl-cc.c
index e11ce40a..ddda3845 100644
--- a/src/afl-cc.c
+++ b/src/afl-cc.c
@@ -1153,9 +1153,6 @@ int main(int argc, char **argv, char **envp) {
if (argc < 2 || strncmp(argv[1], "-h", 2) == 0) {
- char *fp;
- fp = realpath(argv[0], NULL);
-
printf("afl-cc" VERSION
" by Michal Zalewski, Laszlo Szekeres, Marc Heuse\n");
@@ -1302,8 +1299,7 @@ int main(int argc, char **argv, char **envp) {
" AFL_USE_ASAN: activate address sanitizer\n"
" AFL_USE_CFISAN: activate control flow sanitizer\n"
" AFL_USE_MSAN: activate memory sanitizer\n"
- " AFL_USE_UBSAN: activate undefined behaviour sanitizer\n",
- BIN_PATH, BIN_PATH);
+ " AFL_USE_UBSAN: activate undefined behaviour sanitizer\n");
SAYF(
"\nLLVM/LTO/afl-clang-fast/afl-clang-lto specific environment "