diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-04-26 02:32:09 +0200 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-04-26 02:32:09 +0200 |
commit | 66eee34709be9b91808601c7e3e638ffacb858db (patch) | |
tree | 9c9b0a2b1554d39373fe26d3b5edbc2433c24c43 /test/unittests/unit_list.c | |
parent | 85627516a40d75746e00427710dd16c1161f2532 (diff) | |
download | afl++-66eee34709be9b91808601c7e3e638ffacb858db.tar.gz |
refactored global lists
Diffstat (limited to 'test/unittests/unit_list.c')
-rw-r--r-- | test/unittests/unit_list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unittests/unit_list.c b/test/unittests/unit_list.c index 90700a11..df4864e4 100644 --- a/test/unittests/unit_list.c +++ b/test/unittests/unit_list.c @@ -40,7 +40,7 @@ int __wrap_printf(const char *format, ...) { return 1; } -list_t testlist; +static list_t testlist = {.element_prealloc_count = 0}; static void test_contains(void **state) { |