src/hb-uniscribe.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 62cb28dfc668cae9cbff826229bde2271e157927 Author: Jonathan Kew <[email protected]> Date: Mon Jan 20 14:23:08 2014 +0000 fixup for 64-bit windows build diff --git a/src/hb-uniscribe.cc b/src/hb-uniscribe.cc index 905ad5e..6571448 100644 --- a/src/hb-uniscribe.cc +++ b/src/hb-uniscribe.cc @@ -709,7 +709,7 @@ _hb_uniscribe_shape (hb_shape_plan_t *shape_plan, for (unsigned int i = 0; i < range_records.len; i++) { range_record_t *range = &range_records[i]; - range->props.potfRecords = feature_records.array + reinterpret_cast<unsigned int> (range->props.potfRecords); + range->props.potfRecords = feature_records.array + reinterpret_cast<uintptr_t> (range->props.potfRecords); } } else _______________________________________________ HarfBuzz mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/harfbuzz
