Skip to content

Commit

Permalink
Fix data type declaration in data server
Browse files Browse the repository at this point in the history
The ninfo variable is used as a size_t, so declare
it as such.

Signed-off-by: Ralph Castain <[email protected]>
(cherry picked from commit 0bfee1d)
  • Loading branch information
rhc54 committed Nov 18, 2024
1 parent 394283e commit a55b7e9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/runtime/prte_data_server.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* Copyright (c) 2015-2020 Intel, Inc. All rights reserved.
* Copyright (c) 2017-2018 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* Copyright (c) 2021-2022 Nanook Consulting. All rights reserved.
* Copyright (c) 2021-2024 Nanook Consulting All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
Expand Down Expand Up @@ -182,7 +182,8 @@ void prte_data_server(int status, pmix_proc_t *sender,
prte_data_object_t *data;
pmix_data_buffer_t *answer, *reply;
int rc, k;
uint32_t ninfo, i;
size_t ninfo;
uint32_t i;
char **keys = NULL, *str;
bool wait = false;
int room_number;
Expand Down

0 comments on commit a55b7e9

Please sign in to comment.