Index: third_party/WebKit/Source/wtf/text/TextCodecICU.cpp |
diff --git a/third_party/WebKit/Source/wtf/text/TextCodecICU.cpp b/third_party/WebKit/Source/wtf/text/TextCodecICU.cpp |
index eaf4c93e925205c0479a8e2158728c5d690b0c7c..c1aa382050260f991fe187b1d486c93b6b5e0f2a 100644 |
--- a/third_party/WebKit/Source/wtf/text/TextCodecICU.cpp |
+++ b/third_party/WebKit/Source/wtf/text/TextCodecICU.cpp |
@@ -617,10 +617,11 @@ CString TextCodecICU::encodeInternal(const TextCodecInput& input, |
ucnv_setFromUCallBack(m_converterICU, UCNV_FROM_U_CALLBACK_SUBSTITUTE, 0, |
0, 0, &err); |
#else |
- ucnv_setFromUCallBack( |
- m_converterICU, m_needsGBKFallbacks ? gbkCallbackSubstitute |
- : UCNV_FROM_U_CALLBACK_SUBSTITUTE, |
- 0, 0, 0, &err); |
+ ucnv_setFromUCallBack(m_converterICU, |
+ m_needsGBKFallbacks |
+ ? gbkCallbackSubstitute |
+ : UCNV_FROM_U_CALLBACK_SUBSTITUTE, |
+ 0, 0, 0, &err); |
#endif |
break; |
case EntitiesForUnencodables: |