Skip to content

Commit

Permalink
Adds carriage returns to nordcom message
Browse files Browse the repository at this point in the history
  • Loading branch information
tnipen committed May 26, 2016
1 parent 7eecbd2 commit a146746
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/File/NorcomQnh.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ void FileNorcomQnh::writeCore(std::vector<Variable::Type> iVariables) {
std::vector<double> times = getTimes();
std::string startTime = getNorcomTimeStamp(times[mStartTime]);
std::string endTime = getNorcomTimeStamp(times[mEndTime]);
ofs << "FBNO52 ENNC " << currTimeStamp << std::endl;
ofs << "FBNO52 ENNC " << currTimeStamp << "\r\r" << std::endl;
ofs << "VALID " << startTime << " - " << endTime << " UTC." << std::endl;

ofs.precision(0);
Expand Down

0 comments on commit a146746

Please sign in to comment.