* src/autofit/afmodule.c (af_autofitter_done): Fix compiler warning.
diff --git a/ChangeLog b/ChangeLog
index 6eaa010..0ae7f74 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2015-01-14 Behdad Esfahbod <behdad@behdad.org>
+ * src/autofit/afmodule.c (af_autofitter_done): Fix compiler warning.
+
+2015-01-14 Behdad Esfahbod <behdad@behdad.org>
+
[autofit] Add embedded array of segments and edges.
Avoids multiple mallocs per typical glyphs.
diff --git a/src/autofit/afmodule.c b/src/autofit/afmodule.c
index 24e0228..6ed8b02 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 );
}