Skip to content

Commit 2258d28

Browse files
committed
btl/uct: get it to compile again
a recent commit to btl/uct broke compilation for me. This patch gets it compiling again. Signed-off-by: Howard Pritchard <[email protected]>
1 parent a1900c5 commit 2258d28

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)