summaryrefslogtreecommitdiff
path: root/report.c
diff options
context:
space:
mode:
authorJagger <robert@swiecki.net>2016-02-04 00:53:43 +0100
committerJagger <robert@swiecki.net>2016-02-04 00:53:43 +0100
commit3abc5602262165227607ff229d3ae5973efb555d (patch)
treef7b4c1e7c6444d1ab6213f944c6fd09be4ced6fe /report.c
parent5e2c22deeb8d9cdf80fddd609341228dad3ab9bb (diff)
downloadhonggfuzz-3abc5602262165227607ff229d3ae5973efb555d.tar.gz
Change names of dynamic counters
Diffstat (limited to 'report.c')
-rw-r--r--report.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/report.c b/report.c
index 65528950..cff81bb0 100644
--- a/report.c
+++ b/report.c
@@ -46,9 +46,9 @@ static void report_printdynFileMethod(honggfuzz_t * hfuzz)
dprintf(reportFD, "INSTR_COUNT ");
if (hfuzz->dynFileMethod & _HF_DYNFILE_BRANCH_COUNT)
dprintf(reportFD, "BRANCH_COUNT ");
- if (hfuzz->dynFileMethod & _HF_DYNFILE_UNIQUE_BLOCK_COUNT)
+ if (hfuzz->dynFileMethod & _HF_DYNFILE_BTS_BLOCK)
dprintf(reportFD, "BLOCK_COUNT ");
- if (hfuzz->dynFileMethod & _HF_DYNFILE_UNIQUE_EDGE_COUNT)
+ if (hfuzz->dynFileMethod & _HF_DYNFILE_BTS_EDGE)
dprintf(reportFD, "EDGE_COUNT ");
if (hfuzz->dynFileMethod & _HF_DYNFILE_CUSTOM)
dprintf(reportFD, "CUSTOM ");