[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Devel] Error in ftstream.h
From: |
David Turner |
Subject: |
Re: [Devel] Error in ftstream.h |
Date: |
Tue, 11 Dec 2001 14:12:09 +0100 |
Hello Detlef,
Detlef Würkner a écrit :
>
> Hello!
>
> While looking why the PCF driver did not accept my unicode.pcf file I
> found out that there is an error in include/freetype/internal/ftstream.h,
> lines 269 to 272 are
>
> #define GET_ShortLE() FT_GET_MACRO( FT_Get_ShortLE, FT_Short )
> #define GET_UShortLE() FT_GET_MACRO( FT_Get_ShortLE, FT_UShort )
> #define GET_LongLE() FT_GET_MACRO( FT_Get_LongLE, FT_Short )
> #define GET_ULongLE() FT_GET_MACRO( FT_Get_LongLE, FT_Short )
> ^
> |
> there is an 'U' missing here----------------------------+
>
> It seems that only the PCF driver uses that macro.
>
Indeed. And the two macros GET_LongLE and GET_ULongLE shouldn't
use FT_Short but FT_Long and FT_ULong anyway !!
thanks for pointing this out, the fix has been commited..
Regards,
- David