From bb30737ea00cecd109126774173e625c1accc683 Mon Sep 17 00:00:00 2001 From: "dsites@google.com" Date: Wed, 11 Sep 2013 16:17:39 +0000 Subject: [PATCH] fix cast for non-Windows too git-svn-id: https://cld2.googlecode.com/svn/trunk@82 b252ecd4-b096-bf77-eb8e-91563289f87e --- internal/compact_lang_det_impl.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/compact_lang_det_impl.cc b/internal/compact_lang_det_impl.cc index 35f382c..961f3f4 100644 --- a/internal/compact_lang_det_impl.cc +++ b/internal/compact_lang_det_impl.cc @@ -704,9 +704,9 @@ int CheapSqueezeInplace(char* isrc, } if (FLAGS_cld_showme) { // Mark the deletion point with black square U+25A0 - *dst++ = static_cast(0xe2); - *dst++ = static_cast(0x96); - *dst++ = static_cast(0xa0); + *dst++ = static_cast(0xe2); + *dst++ = static_cast(0x96); + *dst++ = static_cast(0xa0); *dst++ = ' '; } skipping = true;