diff options
-rw-r--r-- | vcl/quartz/ctfonts.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/quartz/ctfonts.cxx b/vcl/quartz/ctfonts.cxx index eb98b24569df..887abe4f2f35 100644 --- a/vcl/quartz/ctfonts.cxx +++ b/vcl/quartz/ctfonts.cxx @@ -252,7 +252,7 @@ hb_blob_t* CoreTextFontFace::GetHbTable(hb_tag_t nTag) const return nullptr; hb_face_t* pHbFace = hb_face_builder_create(); - for (auto i = 0u; i < nTags; i++) + for (CFIndex i = 0; i < nTags; i++) { auto nTable = reinterpret_cast<intptr_t>(CFArrayGetValueAtIndex(pTags, i)); assert(nTable); |