Index: third_party/harfbuzz-ng/src/hb-coretext.cc |
diff --git a/third_party/harfbuzz-ng/src/hb-coretext.cc b/third_party/harfbuzz-ng/src/hb-coretext.cc |
index 120608b02455792e0503ef21a0aa881c0df51d9b..ee7f91cc9a7a3a9f1e84ebb6abc92ea3d9ded413 100644 |
--- a/third_party/harfbuzz-ng/src/hb-coretext.cc |
+++ b/third_party/harfbuzz-ng/src/hb-coretext.cc |
@@ -732,7 +732,7 @@ _hb_coretext_shape (hb_shape_plan_t *shape_plan, |
pchars[chars_len++] = 0xFFFDu; |
else { |
pchars[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10); |
- pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1 << 10) - 1)); |
+ pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1u << 10) - 1)); |
} |
} |