1
1

romio: fix uninitialized variable

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>
Этот коммит содержится в:
William Bailey 2019-12-02 17:32:09 -05:00
родитель f03e2f5e0c
Коммит 30bda56bce

Просмотреть файл

@ -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;