Skip to content

Commit

Permalink
Revert deletion of space between fields in history output
Browse files Browse the repository at this point in the history
  • Loading branch information
felker committed Jul 11, 2023
1 parent 7268397 commit c2f8c0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/outputs/history.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ void HistoryOutput::WriteOutputFile(Mesh *pm, ParameterInput *pin, bool flag) {
std::fprintf(pfile,"[%d]=Fc3 ", iout++);
}
for (int n=0; n<pm->nuser_history_output_; n++)
std::fprintf(pfile,"[%d]=%-7s", iout++,
std::fprintf(pfile,"[%d]=%-7s ", iout++,
pm->user_history_output_names_[n].c_str());
std::fprintf(pfile,"\n"); // terminate line
}
Expand Down

0 comments on commit c2f8c0f

Please sign in to comment.