[cache] Correct a type mismatch under non-inlined config.

* src/cache/ftcglyph.h (FTC_GCACHE_LOOKUP_CMP):
FTC_GCache_Lookup() takes the node via a pointer `FTC_Node*',
differently from cpp-macro FTC_CACHE_LOOKUP_CMP().
This commit is contained in:
suzuki toshiya 2011-01-09 20:31:22 +09:00
parent 34f4b20a15
commit 0de5b376d7
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,11 @@
2010-01-09 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
[cache] Correct a type mismatch under non-inlined config.
* src/cache/ftcglyph.h (FTC_GCACHE_LOOKUP_CMP):
FTC_GCache_Lookup() takes the node via a pointer `FTC_Node*',
differently from cpp-macro FTC_CACHE_LOOKUP_CMP().
2010-01-06 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
Update Jamfile to include Bzip2 support.

View File

@ -307,7 +307,7 @@ FT_BEGIN_HEADER
FT_BEGIN_STMNT \
\
error = FTC_GCache_Lookup( FTC_GCACHE( cache ), hash, gindex, \
FTC_GQUERY( query ), node ); \
FTC_GQUERY( query ), &node ); \
\
FT_END_STMNT