More 16bit fixes. * src/psaux/psobjs.c (reallocate_t1_table): Use FT_Long for second parameter.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
diff --git a/ChangeLog b/ChangeLog
index 3b159a2..9359c50 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/src/psaux/psobjs.c b/src/psaux/psobjs.c
index 0ada9e9..f1cea1e 100644
--- a/src/psaux/psobjs.c
+++ b/src/psaux/psobjs.c
@@ -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;