mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-04 21:15:06 +00:00
[dwrite] Fix cast-align error-warning
Fixes https://github.com/harfbuzz/harfbuzz/issues/5197
This commit is contained in:
parent
0849d3d8b6
commit
ba709a385e
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ _hb_directwrite_shaper_font_data_create (hb_font_t *font)
|
|||
void
|
||||
_hb_directwrite_shaper_font_data_destroy (hb_directwrite_font_data_t *data)
|
||||
{
|
||||
((IDWriteFontFace *) data)->Release ();
|
||||
((IDWriteFontFace *) (const void *) data)->Release ();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue