shithub: freetype+ttf2subf

Download patch

ref: 768590a99d36e87dd00df30435f274a4567f6ce3
parent: df018924d91bd0d35bd9021c9932869a166a0d11
author: Werner Lemberg <[email protected]>
date: Thu Dec 20 01:08:23 EST 2012

* src/base/ftobjs.c (ft_property_do): Fix compiler warning.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-12-19  Werner Lemberg  <[email protected]>
+
+	* src/base/ftobjs.c (ft_property_do): Fix compiler warning.
+
 2012-12-19  Alexei Podtelezhnikov  <[email protected]>
 
 	* src/base/ftrfork.c (FT_Raccess_Guess): Switch to FT_Int counters.
--- a/src/base/ftobjs.c
+++ b/src/base/ftobjs.c
@@ -4396,9 +4396,11 @@
 
     FT_Service_Properties  service;
 
+#ifdef FT_DEBUG_LEVEL_ERROR
     const FT_String*  set_name  = "FT_Property_Set";
     const FT_String*  get_name  = "FT_Property_Get";
     const FT_String*  func_name = set ? set_name : get_name;
+#endif
 
     FT_Bool  missing_func;