mirror of
https://gitlab.freedesktop.org/freetype/freetype.git
synced 2026-02-15 03:30:28 +01:00
small fix
This commit is contained in:
parent
18789bfe9f
commit
24ea09fcbd
1 changed files with 2 additions and 2 deletions
|
|
@ -1059,7 +1059,7 @@
|
|||
{
|
||||
FT_Open_Args args = ft_default_open_args;
|
||||
|
||||
args.pathname = (FT_Byte*)pathname;
|
||||
args.pathname = (char*)pathname;
|
||||
return FT_Open_Face( library, &args, face_index, aface );
|
||||
}
|
||||
|
||||
|
|
@ -1281,7 +1281,7 @@
|
|||
{
|
||||
FT_Attach_Reader reader;
|
||||
|
||||
reader = (FT_Attach_Reader)get_interface( driver, "attach_file" );
|
||||
reader = (FT_Attach_Reader)(get_interface( driver, "attach_file" ));
|
||||
if (reader)
|
||||
error = reader( face, stream );
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue