Skip to content

Commit 0bfee1d

Browse files
committed
Fix data type declaration in data server
The ninfo variable is used as a size_t, so declare it as such. Signed-off-by: Ralph Castain <[email protected]>
1 parent 555c170 commit 0bfee1d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/runtime/prte_data_server.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* Copyright (c) 2015-2020 Intel, Inc. All rights reserved.
1616
* Copyright (c) 2017-2018 Research Organization for Information Science
1717
* and Technology (RIST). All rights reserved.
18-
* Copyright (c) 2021-2022 Nanook Consulting. All rights reserved.
18+
* Copyright (c) 2021-2024 Nanook Consulting All rights reserved.
1919
* $COPYRIGHT$
2020
*
2121
* Additional copyrights may follow
@@ -182,7 +182,8 @@ void prte_data_server(int status, pmix_proc_t *sender,
182182
prte_data_object_t *data;
183183
pmix_data_buffer_t *answer, *reply;
184184
int rc, k;
185-
uint32_t ninfo, i;
185+
size_t ninfo;
186+
uint32_t i;
186187
char **keys = NULL, *str;
187188
bool wait = false;
188189
int room_number;

0 commit comments

Comments
 (0)