Skip to content

Commit df22471

Browse files
[OpenMP] Update printf stmt in kmp_settings.cpp
Remove extraneous argument from printf statement
1 parent d152808 commit df22471

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openmp/runtime/src/kmp_settings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3280,7 +3280,7 @@ static void __kmp_stg_print_places(kmp_str_buf_t *buffer, char const *name,
32803280
const char *ct_name = __kmp_hw_get_core_type_keyword(ct);
32813281
__kmp_str_buf_print(buffer, ":%s", name, ct_name);
32823282
} else if (eff >= 0 && eff < KMP_HW_MAX_NUM_CORE_EFFS) {
3283-
__kmp_str_buf_print(buffer, ":eff%d", name, eff);
3283+
__kmp_str_buf_print(buffer, ":eff%d", eff);
32843284
}
32853285
}
32863286

0 commit comments

Comments
 (0)