Skip to content

Commit

Permalink
single-quoted space for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
loostrum committed Nov 20, 2024
1 parent 1d2c7f2 commit f440a9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion host/src/PowerSensor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ void PowerSensor::dumpCurrentWattToFile(const char markerChar) {
auto time = std::chrono::high_resolution_clock::now();
static auto previousTime = startTime;

*dumpFile << markerChar << " " << elapsedSeconds(startTime, time);
*dumpFile << markerChar << ' ' << elapsedSeconds(startTime, time);
*dumpFile << ' ' << static_cast<int>(1e6 * elapsedSeconds(previousTime, time));
*dumpFile << ' ' << timestamp;
previousTime = time;
Expand Down

0 comments on commit f440a9c

Please sign in to comment.