white space.

This commit is contained in:
Kelvin Sherlock 2016-07-26 16:07:51 -04:00
parent 05f48c6a3c
commit 62612a10d3
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ std::string utf8_to_macroman(const std::string &s) {
//not utf8...
}
tmp = (tmp << 6) + (c & 0b00111111);
if(--cs == 0) {
if (--cs == 0) {
c = unicode_to_macroman(tmp);
if (c) rv.push_back(c);
}