From 62612a10d3e5649dcb9eb762244486ad27fc11b3 Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Tue, 26 Jul 2016 16:07:51 -0400 Subject: [PATCH] white space. --- macroman.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macroman.cpp b/macroman.cpp index 59c3495..3e19184 100644 --- a/macroman.cpp +++ b/macroman.cpp @@ -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); }