fuzz: move hw ip printing before soft edge/ip
diff --git a/fuzz.c b/fuzz.c
index d6f4f20..b47a4fa 100644
--- a/fuzz.c
+++ b/fuzz.c
@@ -464,14 +464,14 @@
         run->global->linux.hwCnts.softCntEdge += softCntEdge;
         run->global->linux.hwCnts.softCntCmp += softCntCmp;
 
-        LOG_I("Size:%zu (i,b,edg,ip,hw,cmp): %" PRIu64 "/%" PRIu64 "/%" PRIu64 "/%" PRIu64
+        LOG_I("Size:%zu (i,b,hw,edge,ip,cmp): %" PRIu64 "/%" PRIu64 "/%" PRIu64 "/%" PRIu64
               "/%" PRIu64 "/%" PRIu64 ", Tot:%" PRIu64 "/%" PRIu64 "/%" PRIu64 "/%" PRIu64
               "/%" PRIu64 "/%" PRIu64,
             run->dynamicFileSz, run->linux.hwCnts.cpuInstrCnt, run->linux.hwCnts.cpuBranchCnt,
-            softCntEdge, softCntPc, run->linux.hwCnts.newBBCnt, softCntCmp,
+            run->linux.hwCnts.newBBCnt, softCntEdge, softCntPc, softCntCmp,
             run->global->linux.hwCnts.cpuInstrCnt, run->global->linux.hwCnts.cpuBranchCnt,
-            run->global->linux.hwCnts.softCntEdge, run->global->linux.hwCnts.softCntPc,
-            run->global->linux.hwCnts.bbCnt, run->global->linux.hwCnts.softCntCmp);
+            run->global->linux.hwCnts.bbCnt, run->global->linux.hwCnts.softCntEdge,
+            run->global->linux.hwCnts.softCntPc, run->global->linux.hwCnts.softCntCmp);
 
         fuzz_addFileToFileQ(run);
     }