about summary refs log tree commit diff
path: root/examples/afl_untracer/libtestinstr.c
diff options
context:
space:
mode:
authorDominik Maier <domenukk@gmail.com>2020-05-01 01:11:54 +0200
committerDominik Maier <domenukk@gmail.com>2020-05-01 01:11:54 +0200
commitcc78fb721b9abbafadde81068b8a98ffd3ef9ed2 (patch)
tree4444d0e3e820fd2189dfc6b8cc4e404d4f4910dc /examples/afl_untracer/libtestinstr.c
parentbb7d2a734773ee1a6411be46fb0889510c07ecbb (diff)
downloadafl++-cc78fb721b9abbafadde81068b8a98ffd3ef9ed2.tar.gz
code format
Diffstat (limited to 'examples/afl_untracer/libtestinstr.c')
-rw-r--r--examples/afl_untracer/libtestinstr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/afl_untracer/libtestinstr.c b/examples/afl_untracer/libtestinstr.c
index b21c3db5..96b1cf21 100644
--- a/examples/afl_untracer/libtestinstr.c
+++ b/examples/afl_untracer/libtestinstr.c
@@ -20,8 +20,7 @@
 
 void testinstr(char *buf, int len) {
 
-  if (len < 1)
-    return;
+  if (len < 1) return;
   buf[len] = 0;
 
   // we support three input cases
@@ -33,3 +32,4 @@ void testinstr(char *buf, int len) {
     printf("Neither one or zero? How quaint!\n");
 
 }
+