Skip to content

Commit

Permalink
fix value
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Applencourt committed Jul 25, 2024
1 parent e00c521 commit 5b475ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xprof/sync_daemon_mpi.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ int MPIX_Init_Session(MPI_Session *lib_shandle, MPI_Comm *lib_comm) {
char out_value[100] = {0};
int valuelen = sizeof(out_value);
int flag;
CHECK_MPI(MPI_Info_get(tinfo, mt_key, &valuelen, out_value, &flag));
CHECK_MPI(MPI_Info_get(tinfo, mt_key, valuelen, out_value, &flag));
if (flag == 0)
fprintf(stderr, "THAPI_SYNC_DAEMON_MPI Warning: Could not find key %s\n", mt_key);
else if (strcmp(out_value, mt_value))
Expand Down

0 comments on commit 5b475ed

Please sign in to comment.