Skip to content

Commit

Permalink
Fix linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
loostrum committed Oct 23, 2023
1 parent df760dd commit f0c6e72
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion host/src/psconfig.cc
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,8 @@ void print() {
for (unsigned int pair = 0; pair < PowerSensor3::MAX_PAIRS; pair++) {
double usage = Watt(startState, stopState, pair);
totalUsage += usage;
std::cout << "Current usage pair " << pair << " (sensors " << 2 * pair << ", " << 2 * pair + 1<< "): " << usage << " W" << std::endl;
std::cout << "Current usage pair " << pair << " (sensors " << 2 * pair << ", ";
std::cout << 2 * pair + 1<< "): " << usage << " W" << std::endl;
}
std::cout << "Total usage: " << totalUsage << " W" << std::endl;
}
Expand Down

0 comments on commit f0c6e72

Please sign in to comment.