From 5b65cc2fb6eb3b71739a1b68bec655accd80ec9c Mon Sep 17 00:00:00 2001 From: Anh <zenpoems@gmail.com> Date: Sat, 4 Aug 2018 14:16:38 +0000 Subject: [PATCH] Re-formatted some chunks of code --- afl_transforms/tools/zafl/zafl.cpp | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/afl_transforms/tools/zafl/zafl.cpp b/afl_transforms/tools/zafl/zafl.cpp index 0dc8ae9..7663a4b 100644 --- a/afl_transforms/tools/zafl/zafl.cpp +++ b/afl_transforms/tools/zafl/zafl.cpp @@ -408,14 +408,13 @@ int Zafl_t::execute() bool leafAnnotation = true; if (m_use_stars) leafAnnotation = hasLeafAnnotation(f, m_stars_analysis_engine.getAnnotations()); - if (f) - { - if (leafAnnotation) - cout << "Processing leaf function: "; - else - cout << "Processing function: "; - cout << f->GetName() << endl; - } + + cout << end; + if (leafAnnotation) + cout << "Processing leaf function: "; + else + cout << "Processing function: "; + cout << f->GetName() << endl; auto current = num_bb_instrumented; ControlFlowGraph_t cfg(f); -- GitLab