Skip to content

Commit

Permalink
proper syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
bertmelis authored Oct 2, 2024
1 parent eabaf00 commit ad90857
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Interface/LinuxSerialInterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ uint8_t LinuxSerialInterface::read() {
vw_log_e("Error reading serial port");
return 0;
}
std::cout << "rx: 0x" std::setfill('0') << std::setw(2) << std::hex << unsigned(buf) << std::endl;
std::cout << "rx: 0x" << std::setfill('0') << std::setw(2) << std::hex << unsigned(buf) << std::endl;
return buf;
}

Expand Down

0 comments on commit ad90857

Please sign in to comment.