simple minor fix in t1afm.h/t1afm.c

This commit is contained in:
David Turner 2000-02-29 17:14:02 +00:00
parent c75f71e049
commit e595014a64
4 changed files with 6 additions and 6 deletions

View File

@ -73,7 +73,7 @@
{
FT_Byte* p = *start;
int sum = 0;
int sign;
int sign = 1;
/* skip everything that is not a number */
while ( p < limit && (*p < '0' || *p > '9') )

View File

@ -31,8 +31,8 @@ typedef struct T1_AFM_
LOCAL_DEF
FT_Error T1_Read_AFM( FT_Stream stream,
FT_Face face );
FT_Error T1_Read_AFM( FT_Face face,
FT_Stream stream );
LOCAL_DEF
void T1_Done_AFM( FT_Memory memory,

View File

@ -73,7 +73,7 @@
{
FT_Byte* p = *start;
int sum = 0;
int sign;
int sign = 1;
/* skip everything that is not a number */
while ( p < limit && (*p < '0' || *p > '9') )

View File

@ -31,8 +31,8 @@ typedef struct T1_AFM_
LOCAL_DEF
FT_Error T1_Read_AFM( FT_Stream stream,
FT_Face face );
FT_Error T1_Read_AFM( FT_Face face,
FT_Stream stream );
LOCAL_DEF
void T1_Done_AFM( FT_Memory memory,