[base] FT_Attach_Stream: Make `parameters` argument constant.

This commit is contained in:
Ali Chraghi 2022-09-29 18:25:41 +03:30 committed by Werner Lemberg
parent 3f3427c6f3
commit 5faa1df8b9
2 changed files with 4 additions and 4 deletions

View File

@ -2594,7 +2594,7 @@ FT_BEGIN_HEADER
*/
FT_EXPORT( FT_Error )
FT_Attach_Stream( FT_Face face,
FT_Open_Args* parameters );
const FT_Open_Args* parameters );
/**************************************************************************

View File

@ -2855,7 +2855,7 @@
FT_EXPORT_DEF( FT_Error )
FT_Attach_Stream( FT_Face face,
FT_Open_Args* parameters )
const FT_Open_Args* parameters )
{
FT_Stream stream;
FT_Error error;