Skip to content
This repository was archived by the owner on Mar 4, 2021. It is now read-only.

Commit

Permalink
Fixed burn time debug information for the protocols v1 and v2.
Browse files Browse the repository at this point in the history
  • Loading branch information
camrein committed Oct 4, 2017
1 parent e3c7c83 commit 68b6e4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EzGraverCore/ezgraver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ void EzGraver::_setBurnTime(unsigned char const& burnTime) {
if(burnTime < 0x01 || burnTime > 0xF0) {
throw new std::out_of_range("burntime out of range");
}
qDebug() << "setting burn time to:" << qPrintable(burnTime);
qDebug() << "setting burn time to:" << static_cast<int>(burnTime);
_transmit(burnTime);
}

Expand Down

0 comments on commit 68b6e4f

Please sign in to comment.