simple minor fix in t1afm.h/t1afm.c
This commit is contained in:
parent
c75f71e049
commit
e595014a64
@ -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') )
|
||||
|
@ -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,
|
||||
|
@ -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') )
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user