* include/freetype/internal/ftserv.h (FT_FACE_FIND_GLOBAL_SERVICE)

[__cplusplus]: Fix typo.
This commit is contained in:
Werner Lemberg 2005-05-09 22:29:36 +00:00
parent 9539d9b96f
commit 2c9ee60e04
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2005-05-08 Werner Lemberg <wl@gnu.org>
* include/freetype/internal/ftserv.h (FT_FACE_FIND_GLOBAL_SERVICE)
[__cplusplus]: Fix typo.
2005-05-07 Werner Lemberg <wl@gnu.org>
Handle unsorted SFNT type 4 cmaps correctly (reported by Dirck

View File

@ -118,9 +118,9 @@ FT_BEGIN_HEADER
#define FT_FACE_FIND_GLOBAL_SERVICE( face, ptr, id ) \
FT_BEGIN_STMNT \
FT_Module module = FT_MODULE( FT_FACE( face )->driver ); \
FT_Pointer _tmp_; \
FT_Pointer _pptr_ = (FT_Pointer*)&(ptr); \
FT_Module module = FT_MODULE( FT_FACE( face )->driver ); \
FT_Pointer _tmp_; \
FT_Pointer* _pptr_ = (FT_Pointer*)&(ptr); \
\
\
_tmp_ = ft_module_get_service( module, FT_SERVICE_ID_ ## id ); \