* src/type1/t1parse.h (T1_ParserRec): Change type of `base_len'

and `private_len' to FT_Long.

* src/cache/ftcsbits.c (ftc_sbit_node_load): Remove unused label.
* src/pshinter/pshalgo3.c (psh3_hint_align): Remove unused variable.
This commit is contained in:
Werner Lemberg 2002-09-17 07:31:17 +00:00
parent 1313646d65
commit 39d98e133b
4 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,11 @@
2002-09-16 Werner Lemberg <wl@gnu.org>
* src/type1/t1parse.h (T1_ParserRec): Change type of `base_len'
and `private_len' to FT_Long.
* src/cache/ftcsbits.c (ftc_sbit_node_load): Remove unused label.
* src/pshinter/pshalgo3.c (psh3_hint_align): Remove unused variable.
2002-09-14 Werner Lemberg <wl@gnu.org>
Making ftgrays.c compile stand-alone again.

View File

@ -221,7 +221,6 @@
}
}
Exit:
return error;
}

View File

@ -441,7 +441,6 @@
FT_Pos len = FT_MulFix( hint->org_len, scale );
FT_Int do_snapping;
FT_Pos fit_center;
FT_Pos fit_len;
PSH_AlignmentRec align;

View File

@ -64,10 +64,10 @@ FT_BEGIN_HEADER
FT_Stream stream;
FT_Byte* base_dict;
FT_Int base_len;
FT_Long base_len;
FT_Byte* private_dict;
FT_Int private_len;
FT_Long private_len;
FT_Byte in_pfb;
FT_Byte in_memory;