diff options
author | van Hauser <vh@thc.org> | 2022-03-17 08:46:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-17 08:46:15 +0100 |
commit | 1a65df2beee0a68bd5198a44f42ae1346f7ee231 (patch) | |
tree | b0c4226b4aabcd5fed1f83c6f201b71ccebf1ba6 | |
parent | 34d7a6357ed7bab5a934fdaf2622c72ad27c8f28 (diff) | |
parent | c08304ad3d649df5033bd69a2096d454a28c36fc (diff) | |
download | afl++-1a65df2beee0a68bd5198a44f42ae1346f7ee231.tar.gz |
Merge pull request #1352 from cd80/patch-1
fix typo in error message when using LD_PRELOAD
-rw-r--r-- | src/afl-fuzz.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index da1c7602..c5333056 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -1687,7 +1687,7 @@ int main(int argc, char **argv_orig, char **envp) { if (getenv("LD_PRELOAD")) { WARNF( - "LD_PRELOAD is set, are you sure that is what to you want to do " + "LD_PRELOAD is set, are you sure that is what you want to do " "instead of using AFL_PRELOAD?"); } |