about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--examples/afl_untracer/afl-untracer.c4
-rw-r--r--llvm_mode/afl-clang-fast.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/afl_untracer/afl-untracer.c b/examples/afl_untracer/afl-untracer.c
index f812958c..d319b530 100644
--- a/examples/afl_untracer/afl-untracer.c
+++ b/examples/afl_untracer/afl-untracer.c
@@ -65,7 +65,7 @@
 #include <sys/sysctl.h>
 #include <sys/user.h>
 #else
-#error "Unsupproted platform"
+#error "Unsupported platform"
 #endif
 
 #define MEMORY_MAP_DECREMENT 0x200000000000
@@ -667,7 +667,7 @@ int main(int argc, char *argv[]) {
         fuzz();
 
         // we can use _exit which is faster because our target library
-        // was loaded via dlopen and there cannot have deconstructors
+        // was loaded via dlopen and therefore cannot have deconstructors
         // registered.
         _exit(0);
 
diff --git a/llvm_mode/afl-clang-fast.c b/llvm_mode/afl-clang-fast.c
index 4b9999a6..2d1b427c 100644
--- a/llvm_mode/afl-clang-fast.c
+++ b/llvm_mode/afl-clang-fast.c
@@ -717,7 +717,7 @@ int main(int argc, char **argv, char **envp) {
   if (instrument_mode == INSTRUMENT_LTO)
     FATAL(
         "instrumentation mode LTO specified but LLVM support not available "
-        "(requires LLVM 11)");
+        "(requires LLVM 11 or higher)");
 #endif
 
   if (instrument_opt_mode && instrument_mode != INSTRUMENT_CLASSIC &&