about summary refs log tree commit diff
path: root/include/list.h
diff options
context:
space:
mode:
authorDominik Maier <domenukk@gmail.com>2020-03-31 02:41:11 +0200
committerDominik Maier <domenukk@gmail.com>2020-04-01 13:10:07 +0200
commit582f5103d92dd8b7da1742c86d22f6b191743b6f (patch)
tree1d5b87ed6c0b0b4e1287ec14a5fdbdbfe84fbce8 /include/list.h
parentabef8599251f4d01349285a6c6ed0f75a54272b8 (diff)
downloadafl++-582f5103d92dd8b7da1742c86d22f6b191743b6f.tar.gz
enabled fortify source
Diffstat (limited to 'include/list.h')
-rw-r--r--include/list.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/list.h b/include/list.h
index 1190931f..25ee8282 100644
--- a/include/list.h
+++ b/include/list.h
@@ -34,8 +34,8 @@
 #include "debug.h"
 #include "afl-prealloc.h"
 
-#define LIST_PREALLOC_SIZE \
-  (64)             /* How many elements to allocate before malloc is needed */
+/* How many elements to allocate before malloc is needed */
+#define LIST_PREALLOC_SIZE (64)
 
 typedef struct list_element {