about summary refs log tree commit diff
path: root/src/afl-fuzz.c
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2022-03-04 09:41:21 +0100
committervanhauser-thc <vh@thc.org>2022-03-04 09:41:21 +0100
commit2eeba2dbf085b1c679dc82d59a0ec0ddc2c05429 (patch)
tree1527e76c1adcd77c208c9572a662199f3eb2f9fa /src/afl-fuzz.c
parent09123d861731a47cc6474763a0eb5ddd4cc09b6d (diff)
downloadafl++-2eeba2dbf085b1c679dc82d59a0ec0ddc2c05429.tar.gz
code format
Diffstat (limited to 'src/afl-fuzz.c')
-rw-r--r--src/afl-fuzz.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c
index df6e5404..da1c7602 100644
--- a/src/afl-fuzz.c
+++ b/src/afl-fuzz.c
@@ -468,8 +468,7 @@ nyx_plugin_handler_t *afl_load_libnyx_plugin(u8 *libnyx_binary) {
       dlsym(handle, "nyx_get_bitmap_buffer_size");
   if (plugin->nyx_get_bitmap_buffer_size == NULL) { goto fail; }
 
-  plugin->nyx_get_aux_string =
-      dlsym(handle, "nyx_get_aux_string");
+  plugin->nyx_get_aux_string = dlsym(handle, "nyx_get_aux_string");
   if (plugin->nyx_get_aux_string == NULL) { goto fail; }
 
   OKF("libnyx plugin is ready!");