Skip to content

Commit b09a79d

Browse files
authored
Merge pull request #13038 from hppritcha/fix_main_build_uct_btl
btl/uct: get it to compile again
2 parents a1900c5 + 2258d28 commit b09a79d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

opal/mca/btl/uct/btl_uct_rdma.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Copyright (c) 2014-2018 Los Alamos National Security, LLC. All rights
44
* reserved.
55
* Copyright (c) 2025 Google, LLC. All rights reserved.
6+
* Copyright (c) 2025 Triad National Security, LLC. All rights reserved.
67
* $COPYRIGHT$
78
*
89
* Additional copyrights may follow
@@ -45,10 +46,10 @@ static void mca_btl_uct_uct_completion_construct(mca_btl_uct_uct_completion_t *c
4546
{
4647
comp->frag = NULL;
4748
comp->uct_comp.func = mca_btl_uct_uct_completion;
48-
comp.uct_comp.count = 1;
49+
comp->uct_comp.count = 1;
4950

5051
#if UCT_API >= ((1L<<UCT_MAJOR_BIT)|(10L << UCT_MINOR_BIT))
51-
comp->uct_comp->status = UCS_OK;
52+
comp->uct_comp.status = UCS_OK;
5253
#endif
5354
}
5455

0 commit comments

Comments
 (0)