diff options
author | Alexei Podtelezhnikov <apodtele@gmail.com> | 2023-04-10 15:30:43 +0000 |
---|---|---|
committer | Alexei Podtelezhnikov <apodtele@gmail.com> | 2023-04-10 15:30:43 +0000 |
commit | 1a4c18f7cb70a2ae4fa209bb75a6c6c5b6ace0f2 (patch) | |
tree | ff3727f91b86095a3217459a148ec2cf49eb7433 /src/winfonts | |
parent | d25444333c07951bf16788862420e311799c0ad0 (diff) | |
download | freetype2-1a4c18f7cb70a2ae4fa209bb75a6c6c5b6ace0f2.tar.gz |
Align `char_next` return types.
This is mostly cosmetic because FT_UInt and FT_UInt32 are likely identical.
* src/sfnt/ttcmap.c, src/cff/cffcmap.c, src/psaux/t1cmap.c,
src/psnames/psmodule.c, include/freetype/internal/service/svpcsmap.h,
src/pfr/pfrcmap.c, src/winfonts/winfnt.c (*_char_next): return FT_UInt.
Diffstat (limited to 'src/winfonts')
-rw-r--r-- | src/winfonts/winfnt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/winfonts/winfnt.c b/src/winfonts/winfnt.c index fa73ae4a9..261540f25 100644 --- a/src/winfonts/winfnt.c +++ b/src/winfonts/winfnt.c @@ -656,7 +656,7 @@ } - static FT_UInt32 + static FT_UInt fnt_cmap_char_next( FNT_CMap cmap, FT_UInt32 *pchar_code ) { |