Skip to content

Commit

Permalink
Correct initial values for INOUT variables name_len and desc_len.
Browse files Browse the repository at this point in the history
  • Loading branch information
cchambreau committed Jun 29, 2022
1 parent 36d0804 commit f435134
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion events/events_source.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ void test_source() {
int num_sources, source_index;
MPI_Count timestamp;
char name[MAX_STRING], desc[MAX_STRING];
int name_len, desc_len;
int name_len = MAX_STRING, desc_len = MAX_STRING;
MPI_Count ticks_per_second, max_ticks;
MPI_Info info;
MPI_T_source_order ordering;
Expand Down

0 comments on commit f435134

Please sign in to comment.