about summary refs log tree commit diff
path: root/include/afl-prealloc.h
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-06-29 00:58:05 +0200
committervan Hauser <vh@thc.org>2020-06-29 00:58:05 +0200
commite5e485fcdb039fc77842b0753a4adf42d6063388 (patch)
treea8b52645422ac6b75cbd3dd648af865112fdf66f /include/afl-prealloc.h
parent16f3df7cc6c429e302af2c21ecd5eb6ba9a58c6b (diff)
downloadafl++-e5e485fcdb039fc77842b0753a4adf42d6063388.tar.gz
fix autodict
Diffstat (limited to 'include/afl-prealloc.h')
-rw-r--r--include/afl-prealloc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/afl-prealloc.h b/include/afl-prealloc.h
index a9de3ba2..fa6c9b70 100644
--- a/include/afl-prealloc.h
+++ b/include/afl-prealloc.h
@@ -60,7 +60,7 @@ typedef enum prealloc_status {
                                                                                \
     if ((prealloc_counter) >= (prealloc_size)) {                               \
                                                                                \
-      el_ptr = (element_t *) malloc(sizeof(*el_ptr));                                        \
+      el_ptr = (element_t *)malloc(sizeof(*el_ptr));                           \
       if (!el_ptr) { FATAL("error in list.h -> out of memory for element!"); } \
       el_ptr->pre_status = PRE_STATUS_MALLOC;                                  \
                                                                                \