* src/base/ftobjs.c (ft_property_do): Fix compiler warning.
This commit is contained in:
parent
df018924d9
commit
768590a99d
|
@ -1,3 +1,7 @@
|
||||||
|
2012-12-19 Werner Lemberg <wl@gnu.org>
|
||||||
|
|
||||||
|
* src/base/ftobjs.c (ft_property_do): Fix compiler warning.
|
||||||
|
|
||||||
2012-12-19 Alexei Podtelezhnikov <apodtele@gmail.com>
|
2012-12-19 Alexei Podtelezhnikov <apodtele@gmail.com>
|
||||||
|
|
||||||
* src/base/ftrfork.c (FT_Raccess_Guess): Switch to FT_Int counters.
|
* src/base/ftrfork.c (FT_Raccess_Guess): Switch to FT_Int counters.
|
||||||
|
|
|
@ -4396,9 +4396,11 @@
|
||||||
|
|
||||||
FT_Service_Properties service;
|
FT_Service_Properties service;
|
||||||
|
|
||||||
|
#ifdef FT_DEBUG_LEVEL_ERROR
|
||||||
const FT_String* set_name = "FT_Property_Set";
|
const FT_String* set_name = "FT_Property_Set";
|
||||||
const FT_String* get_name = "FT_Property_Get";
|
const FT_String* get_name = "FT_Property_Get";
|
||||||
const FT_String* func_name = set ? set_name : get_name;
|
const FT_String* func_name = set ? set_name : get_name;
|
||||||
|
#endif
|
||||||
|
|
||||||
FT_Bool missing_func;
|
FT_Bool missing_func;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue