Skip to content

Commit

Permalink
Update printf for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
LSchwiebert committed Dec 4, 2024
1 parent 79f7212 commit 3773dd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CheckpointSetup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ void CheckpointSetup::SetCheckpointData(bool &parallelTemperingIsEnabled,
void CheckpointSetup::SetStepNumber() { startStepRef = chkObj.stepNumber; }

void CheckpointSetup::SetTrueStepNumber() {
printf("%-40s %-l64u \n", "Info: Loading true step from checkpoint",
printf("%-40s %-lu \n", "Info: Loading true step from checkpoint",
chkObj.trueStepNumber);
trueStepRef = chkObj.trueStepNumber;
}
Expand Down

0 comments on commit 3773dd5

Please sign in to comment.