diff options
author | van Hauser <vh@thc.org> | 2020-03-11 11:42:57 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-03-11 11:42:57 +0100 |
commit | 684f4dd1c44053517c6685a8a3137691535ecd84 (patch) | |
tree | 67b729127193050c7812bf2159ffac047b45280d /include/list.h | |
parent | d8d89507b5cdbd066c149fd3c86a91b3948521aa (diff) | |
download | afl++-684f4dd1c44053517c6685a8a3137691535ecd84.tar.gz |
honor afl_quiet on env var checks + code-format
Diffstat (limited to 'include/list.h')
-rw-r--r-- | include/list.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/list.h b/include/list.h index f9760ccf..1190931f 100644 --- a/include/list.h +++ b/include/list.h @@ -43,7 +43,7 @@ typedef struct list_element { struct list_element *prev; struct list_element *next; - void *data; + void * data; } element_t; @@ -100,7 +100,7 @@ static void list_append(list_t *list, void *el) { #define LIST_FOREACH(list, type, block) \ do { \ \ - list_t *li = (list); \ + list_t * li = (list); \ element_t *head = get_head((li)); \ element_t *el_box = (head)->next; \ if (!el_box) FATAL("foreach over uninitialized list"); \ |