fix cast for non-Windows too

git-svn-id: https://cld2.googlecode.com/svn/trunk@82 b252ecd4-b096-bf77-eb8e-91563289f87e
This commit is contained in:
dsites@google.com
2013-09-11 16:17:39 +00:00
parent f2b6758bd7
commit bb30737ea0

View File

@@ -704,9 +704,9 @@ int CheapSqueezeInplace(char* isrc,
}
if (FLAGS_cld_showme) {
// Mark the deletion point with black square U+25A0
*dst++ = static_cast<signed char>(0xe2);
*dst++ = static_cast<signed char>(0x96);
*dst++ = static_cast<signed char>(0xa0);
*dst++ = static_cast<char>(0xe2);
*dst++ = static_cast<char>(0x96);
*dst++ = static_cast<char>(0xa0);
*dst++ = ' ';
}
skipping = true;