mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 21:45:06 +00:00
[uniscribe] Fix warnings
This commit is contained in:
parent
29ad9304e2
commit
d9c4d3edf0
1 changed files with 3 additions and 3 deletions
|
@ -699,7 +699,7 @@ retry:
|
|||
script_tags,
|
||||
&item_count);
|
||||
if (unlikely (FAILED (hr)))
|
||||
FAIL ("ScriptItemizeOpenType() failed: 0x%08lx", hr);
|
||||
FAIL ("ScriptItemizeOpenType() failed: 0x%08lx", (unsigned long) hr);
|
||||
|
||||
#undef MAX_ITEMS
|
||||
|
||||
|
@ -785,7 +785,7 @@ retry:
|
|||
}
|
||||
if (unlikely (FAILED (hr)))
|
||||
{
|
||||
FAIL ("ScriptShapeOpenType() failed: 0x%08lx", hr);
|
||||
FAIL ("ScriptShapeOpenType() failed: 0x%08lx", (unsigned long) hr);
|
||||
}
|
||||
|
||||
for (unsigned int j = chars_offset; j < chars_offset + item_chars_len; j++)
|
||||
|
@ -811,7 +811,7 @@ retry:
|
|||
offsets + glyphs_offset,
|
||||
nullptr);
|
||||
if (unlikely (FAILED (hr)))
|
||||
FAIL ("ScriptPlaceOpenType() failed: 0x%08lx", hr);
|
||||
FAIL ("ScriptPlaceOpenType() failed: 0x%08lx", (unsigned long) hr);
|
||||
|
||||
if (DEBUG_ENABLED (UNISCRIBE))
|
||||
fprintf (stderr, "Item %d RTL %d LayoutRTL %d LogicalOrder %d ScriptTag %c%c%c%c\n",
|
||||
|
|
Loading…
Add table
Reference in a new issue