diff options
| author | Dominik Maier <domenukk@gmail.com> | 2020-04-19 16:42:40 +0200 |
|---|---|---|
| committer | Dominik Maier <domenukk@gmail.com> | 2020-04-21 13:14:34 +0200 |
| commit | 9bb0733eb594799726a16537e72e6e32b181c5bc (patch) | |
| tree | 23156af7d828baec786cbe97d5e297fd6670b9d9 /include/list.h | |
| parent | 22cdad2d208bb3f5b98796238523344386d24373 (diff) | |
| download | afl++-9bb0733eb594799726a16537e72e6e32b181c5bc.tar.gz | |
clang-tidy readability-braces (#323)
Diffstat (limited to 'include/list.h')
| -rw-r--r-- | include/list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/list.h b/include/list.h index bb985c4f..88cbe062 100644 --- a/include/list.h +++ b/include/list.h @@ -83,7 +83,7 @@ static inline void list_append(list_t *list, void *el) { element_t *el_box = NULL; PRE_ALLOC(el_box, list->element_prealloc_buf, LIST_PREALLOC_SIZE, list->element_prealloc_count); - if (!el_box) FATAL("failed to allocate list element"); + if (!el_box) { FATAL("failed to allocate list element"); } el_box->data = el; el_box->next = head; el_box->prev = head->prev; |
