From 48c86628deafc87a23a1dc92d3a073fe30b1f1bb Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 14 Jan 2015 19:38:36 +0100 Subject: [PATCH] * src/autofit/afmodule.c (af_autofitter_done): Fix compiler warning. --- ChangeLog | 4 ++++ src/autofit/afmodule.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 6eaa0107d..0ae7f74f6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2015-01-14 Behdad Esfahbod + + * src/autofit/afmodule.c (af_autofitter_done): Fix compiler warning. + 2015-01-14 Behdad Esfahbod [autofit] Add embedded array of segments and edges. diff --git a/src/autofit/afmodule.c b/src/autofit/afmodule.c index 24e022852..6ed8b0219 100644 --- a/src/autofit/afmodule.c +++ b/src/autofit/afmodule.c @@ -260,7 +260,7 @@ FT_CALLBACK_DEF( void ) af_autofitter_done( FT_Module ft_module ) /* AF_Module */ { - AF_Module module = (AF_Module)ft_module; + FT_UNUSED( ft_module ); }