Fix compiler warnings.
Reported by Sean. * src/truetype/ttgxvar.c (ft_var_readpackeddeltas): Fix counter data type.
This commit is contained in:
parent
ce41259372
commit
481324cd36
|
@ -1,3 +1,11 @@
|
|||
2009-12-15 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
Fix compiler warnings.
|
||||
Reported by Sean.
|
||||
|
||||
* src/truetype/ttgxvar.c (ft_var_readpackeddeltas): Fix counter data
|
||||
type.
|
||||
|
||||
2009-12-14 Ken Sharp <ken.sharp@artifex.com>
|
||||
|
||||
Ignore invalid `setcurrentpoint' operations in Type 1 fonts.
|
||||
|
|
|
@ -216,7 +216,7 @@
|
|||
FT_Short *deltas;
|
||||
FT_UInt runcnt;
|
||||
FT_Offset i;
|
||||
FT_Offset j;
|
||||
FT_UInt j;
|
||||
FT_Memory memory = stream->memory;
|
||||
FT_Error error = TT_Err_Ok;
|
||||
|
||||
|
|
Loading…
Reference in New Issue