summaryrefslogtreecommitdiff
path: root/src/string.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/string.cpp')
-rw-r--r--src/string.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string.cpp b/src/string.cpp
index 87ea26ee7..6bc9319c1 100644
--- a/src/string.cpp
+++ b/src/string.cpp
@@ -644,7 +644,7 @@ public:
size_t idx = s - string_base;
WChar c = Utf8Consume(&s);
- if (c < 0x10000) {
+ if (c < 0x10000) {
*this->utf16_str.Append() = (UChar)c;
} else {
/* Make a surrogate pair. */