More 16bit fixes.

* src/psaux/psobjs.c (reallocate_t1_table): Use FT_Long for
second parameter.
This commit is contained in:
Werner Lemberg 2002-09-17 13:56:44 +00:00
parent 2110a7d0f7
commit 25bf13fe3e
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2002-09-17 Werner Lemberg <wl@gnu.org>
More 16bit fixes.
* src/psaux/psobjs.c (reallocate_t1_table): Use FT_Long for
second parameter.
2002-09-16 Werner Lemberg <wl@gnu.org>
16bit fixes from Wolfgang Domröse.

View File

@ -102,7 +102,7 @@
static FT_Error
reallocate_t1_table( PS_Table table,
FT_Int new_size )
FT_Long new_size )
{
FT_Memory memory = table->memory;
FT_Byte* old_base = table->block;
@ -739,7 +739,7 @@
FT_Memory memory )
{
FT_Byte* cur = *cursor;
FT_Int len = 0;
FT_PtrDist len = 0;
FT_Int count;
FT_String* result;
FT_Error error;