Skip to content

Commit

Permalink
Merge pull request #7172 from wbailey2/master
Browse files Browse the repository at this point in the history
Nidmap.c and onesided_aggregation.c Compiler Warnings fix
  • Loading branch information
jsquyres committed Dec 3, 2019
2 parents ff48070 + 30bda56 commit 9dd3429
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion orte/util/nidmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -1123,7 +1123,7 @@ int orte_util_decode_ppn(orte_job_t *jdata,
{
orte_std_cntr_t index;
orte_app_idx_t n;
int cnt, rc, m;
int cnt, rc=0, m;
opal_byte_object_t *boptr;
bool compressed;
uint8_t *bytes;
Expand Down

0 comments on commit 9dd3429

Please sign in to comment.