From 741a17e82bb91131dfdb4d0b65ff89a14eebdb4d Mon Sep 17 00:00:00 2001 From: David Turner Date: Tue, 23 Jan 2007 16:14:38 +0000 Subject: [PATCH] * src/truetype/ttobjs.c: fixed typo that prevented compilation when disabling both the unpatented and the bytecode interpreter in the TrueType font driver --- ChangeLog | 4 ++++ src/truetype/ttobjs.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 786207d8f..85ca9df22 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2007-01-23 David Turner + * src/truetype/ttobjs.c: fixed typo that prevented compilation when + disabling both the unpatented and the bytecode interpreter in the + TrueType font driver + * src/autofit/aflatin.c, src/autofit/aftypes.h, src/autofit/afwarp.h, src/autofit/afwarp.c: fix and enable the warper to improve "light" hinting mode. This is not necessarily a final version, but it seems diff --git a/src/truetype/ttobjs.c b/src/truetype/ttobjs.c index 9f8683a91..e0edc0a4e 100644 --- a/src/truetype/ttobjs.c +++ b/src/truetype/ttobjs.c @@ -704,7 +704,7 @@ FT_LOCAL_DEF( FT_Error ) tt_size_ready_bytecode( TT_Size size ) { - FT_UNUSED( ftsize ); + FT_UNUSED( size ); return 0; }