Skip to content
Snippets Groups Projects
Commit bfe41dbb authored by Simon Désaulniers's avatar Simon Désaulniers
Browse files

Merge pull request #36 from kaldoran/log_print

Using standard library function for handling ascii out of range characters.
parents 712d8a01 47e56f23
Branches
Tags
No related merge requests found
......@@ -90,7 +90,7 @@ struct LogMethod {
void logPrintable(const uint8_t *buf, size_t buflen) const {
std::string buf_clean(buflen, '\0');
for (size_t i=0; i<buflen; i++)
buf_clean[i] = buf[i] >= 32 && buf[i] <= 126 ? buf[i] : '.';
buf_clean[i] = std::isprint(buf[i]) ? buf[i] : '.';
(*this)("%s", buf_clean.c_str());
}
private:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment