about summary refs log tree commit diff
path: root/examples/afl_untracer
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-05-05 20:23:16 +0200
committervan Hauser <vh@thc.org>2020-05-05 20:23:16 +0200
commit128e4d55651731a876cd33bee900021cf61ab39b (patch)
tree3b975b87d290c7afebff14c8d3ab0c1db7d9107c /examples/afl_untracer
parentad3960580d4b462e53c98f82283cd11037558642 (diff)
downloadafl++-128e4d55651731a876cd33bee900021cf61ab39b.tar.gz
more typos fixed
Diffstat (limited to 'examples/afl_untracer')
-rw-r--r--examples/afl_untracer/afl-untracer.c4
1 files changed, 2 insertions, 2 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);