forked from minhngoc25a/freetype2
* src/sfnt/sfwoff2.c (woff2_decompress): Fix compiler warning.
Reported by Hin-Tak.
This commit is contained in:
parent
ee19a6cbbc
commit
b6183ea369
|
@ -1,3 +1,9 @@
|
|||
2020-07-23 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/sfnt/sfwoff2.c (woff2_decompress): Fix compiler warning.
|
||||
|
||||
Reported by Hin-Tak.
|
||||
|
||||
2020-07-12 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* builds/unix/configure.raw: Fix inclusion of `ftoption.h'.
|
||||
|
|
|
@ -318,7 +318,9 @@
|
|||
{
|
||||
#ifdef FT_CONFIG_OPTION_USE_BROTLI
|
||||
|
||||
FT_ULong uncompressed_size = dst_size;
|
||||
/* this cast is only of importance on 32bit systems; */
|
||||
/* we don't validate it */
|
||||
FT_Offset uncompressed_size = (FT_Offset)dst_size;
|
||||
BrotliDecoderResult result;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue