Skip to content

Commit

Permalink
romio: fix uninitialized variable
Browse files Browse the repository at this point in the history
Squash compiler warning.

ROMIO is third-party software but has an annoying compiler warning;
this is the minimum distance fix.

Signed-off-by: William Bailey <wbailey2@nd.edu>
  • Loading branch information
wbailey2 committed Dec 2, 2019
1 parent f03e2f5 commit 30bda56
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1966,7 +1966,7 @@ printf("iAmUsedAgg - currentRoundFDStart initialized "
int *sourceAggBlockLengths=NULL;
MPI_Aint *sourceAggDisplacements=NULL, *recvBufferDisplacements=NULL;
MPI_Datatype *sourceAggDataTypes=NULL;
char *derivedTypePackedSourceBuffer;
char *derivedTypePackedSourceBuffer=NULL;
int derivedTypePackedSourceBufferOffset = 0;
int allocatedDerivedTypeArrays = 0;
ADIO_Offset amountOfDataReadThisRoundAgg = 0;
Expand Down

0 comments on commit 30bda56

Please sign in to comment.