Skip to content

Commit

Permalink
Merge pull request mrRobot62#4 from thijse/joscha/chars
Browse files Browse the repository at this point in the history
print chars as the actual character instead of their int counterpart
  • Loading branch information
joscha authored Sep 27, 2017
2 parents 1fb0b46 + 385feab commit 15cb730
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ArduinoLog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ void Logging::printFormat(const char format, va_list *args) {
}

if( format == 'c' ) {
_logOutput->print(va_arg( *args, int ));
_logOutput->print((char) va_arg( *args, int ));
return;
}

Expand Down

0 comments on commit 15cb730

Please sign in to comment.