Skip to content

Commit 2356409

Browse files
committed
removed an unused variable that is causing confusion
1 parent 9d1f47d commit 2356409

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/osc-covert.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,13 @@ static helper_thread_ctrl hctrl;
1515
static i64 para_threshold = 0, ptr_threshold = 0, spurious_cnt = 0;
1616
static EVSet *helper_sf_evset = NULL;
1717
static evchain *sf_chain1 = NULL, *sf_chain2 = NULL;
18-
static u32 extra_sf_cong = 0; // extra_cong wrt. SF!
1918

2019
static bool check_and_set_sf_evset(EVSet *evset) {
21-
if (!evset || evset->size < SF_ASSOC + extra_sf_cong) {
20+
if (!evset || evset->size < SF_ASSOC) {
2221
_error("Failed to build sf evset\n");
2322
return false;
2423
}
25-
evset->size = SF_ASSOC + extra_sf_cong;
24+
evset->size = SF_ASSOC;
2625

2726
EVTestRes tres = precise_evset_test_alt(target, evset);
2827
if (tres != EV_POS) {

0 commit comments

Comments
 (0)