Skip to content

Commit

Permalink
CORE: remove extra var
Browse files Browse the repository at this point in the history
  • Loading branch information
nsarkauskas authored and nsarka committed Feb 26, 2025
1 parent 9c83d20 commit 89e9d7a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/coll_score/ucc_coll_score_map.c
Original file line number Diff line number Diff line change
Expand Up @@ -213,11 +213,10 @@ void ucc_coll_score_map_print_info(const ucc_score_map_t *map)
sizeof(score_str));
#if ENABLE_DEBUG == 1
// If debug, get the name of the init function through dladdr
const char *fn_ptr_str = get_fn_name(range->super.init);
STR_APPEND(coll_str, left, 256, "{%s}:%s:%s=%s ",
range_str,
range->super.team->context->lib->log_component.name,
score_str, fn_ptr_str);
score_str, get_fn_name(range->super.init));
#else
STR_APPEND(coll_str, left, 256, "{%s}:%s:%s ",
range_str,
Expand Down

0 comments on commit 89e9d7a

Please sign in to comment.