diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-10-06 15:38:36 +0200 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-10-06 15:38:36 +0200 |
commit | 74dc227c4412d0121c9b972e5d89db89f54c6b3a (patch) | |
tree | 14da0722ebc330a9a7bf46086db0f45f811cbc1f /include/afl-fuzz.h | |
parent | a4b60ca5b61c9bca5fa7b67528baeb3a8ea9320e (diff) | |
download | afl++-74dc227c4412d0121c9b972e5d89db89f54c6b3a.tar.gz |
code format
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r-- | include/afl-fuzz.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index 46da8c7d..5ab787e0 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -163,7 +163,7 @@ struct queue_entry { u32 tc_ref; /* Trace bytes ref count */ u8 *testcase_buf; /* The testcase buffer, if loaded. */ - u32 testcase_refs; /* count of users of testcase buf */ + u32 testcase_refs; /* count of users of testcase buf */ struct queue_entry *next; /* Next element, if any */ @@ -669,7 +669,8 @@ typedef struct afl_state { /* How many queue entries currently have cached testcases */ u32 q_testcase_cache_count; - /* Refs to each queue entry with cached testcase (for eviction, if cache_count is too large) */ + /* Refs to each queue entry with cached testcase (for eviction, if cache_count + * is too large) */ struct queue_entry *q_testcase_cache[TESTCASE_CACHE_SIZE]; } afl_state_t; |