Skip to content

Commit

Permalink
Removed unnecessary return
Browse files Browse the repository at this point in the history
  • Loading branch information
avincigu committed Feb 13, 2025
1 parent e55d447 commit 5a3318c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/teams_c.c4
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ shmem_team_destroy(shmem_team_t team)
(shmem_internal_team_t *)team == &shmem_internal_team_shared)
RAISE_ERROR_STR("Cannot destroy a pre-defined team");

return shmem_internal_team_destroy((shmem_internal_team_t *)team);
shmem_internal_team_destroy((shmem_internal_team_t *)team);
}

int SHMEM_FUNCTION_ATTRIBUTES
Expand Down

0 comments on commit 5a3318c

Please sign in to comment.