mirror of
https://gitlab.freedesktop.org/freetype/freetype.git
synced 2026-05-16 21:28:07 +02:00
make numerical constant long when bitshifting for FT_Long value
This commit is contained in:
parent
8938185a80
commit
776ff19d64
1 changed files with 1 additions and 1 deletions
|
|
@ -2476,7 +2476,7 @@
|
|||
/* adjust named instance index */
|
||||
face->root.face_index &= 0xFFFF;
|
||||
if ( i < blend->mmvar->num_namedstyles )
|
||||
face->root.face_index |= ( i + 1 ) << 16;
|
||||
face->root.face_index |= ( i + 1L ) << 16;
|
||||
|
||||
face->is_default_instance = is_default_instance;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue