Skip to content

Commit

Permalink
Clang
Browse files Browse the repository at this point in the history
  • Loading branch information
eisenhauer committed Nov 3, 2019
1 parent eac29ee commit 58f3239
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
3 changes: 2 additions & 1 deletion source/adios2/toolkit/sst/cp/cp_writer.c
Original file line number Diff line number Diff line change
Expand Up @@ -1596,7 +1596,8 @@ static void ProcessReaderStatusList(SstStream Stream,
CP_verbose(Stream, "Adjusting reader %d status from %s to %s\n", i,
SSTStreamStatusStr[Stream->Readers[i]->ReaderStatus],
SSTStreamStatusStr[Metadata->ReaderStatus[i]]);
CP_PeerFailCloseWSReader(Stream->Readers[i], Metadata->ReaderStatus[i]);
CP_PeerFailCloseWSReader(Stream->Readers[i],
Metadata->ReaderStatus[i]);
}
}
PTHREAD_MUTEX_UNLOCK(&Stream->DataLock);
Expand Down
8 changes: 6 additions & 2 deletions source/adios2/toolkit/sst/dp/evpath_dp.c
Original file line number Diff line number Diff line change
Expand Up @@ -385,9 +385,13 @@ static void EvpathReadRequestHandler(CManager cm, CMConnection conn,
* timestep that we don't have.
*/
fprintf(stderr, "\n\n\n\n");
fprintf(stderr, "Writer rank %d - Failed to read Timestep %ld, not found. This is an internal inconsistency\n",
fprintf(stderr,
"Writer rank %d - Failed to read Timestep %ld, not found. This is "
"an internal inconsistency\n",
WSR_Stream->WS_Stream->Rank, ReadRequestMsg->Timestep);
fprintf(stderr, "Writer rank %d - Request came from rank %d, please report this error!\n",
fprintf(stderr,
"Writer rank %d - Request came from rank %d, please report this "
"error!\n",
WSR_Stream->WS_Stream->Rank, RequestingRank);
fprintf(stderr, "\n\n\n\n");

Expand Down

0 comments on commit 58f3239

Please sign in to comment.