Skip to content
Snippets Groups Projects
Commit a908e673 authored by Patrick Star's avatar Patrick Star
Browse files

Fixes: - crash on windows

parent bbc97c39
No related branches found
No related tags found
No related merge requests found
......@@ -118,7 +118,7 @@ static QByteArray quoteUnprintable(const QByteArray &ba)
QByteArray res;
char buf[10];
for (int i = 0, n = ba.size(); i != n; ++i) {
char c = ba.at(i);
unsigned char c = ba.at(i);
if (isprint(c)) {
res += c;
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment