ref: f4fe5a4a7f71aba25fc8db2612684c55244c5ec2
parent: 7bdc1d598d02f2fe87caaec68737added4965707
author: Werner Lemberg <[email protected]>
date: Sun Dec 20 12:56:22 EST 2009
Fix compiler warning. Reported by Sean. * src/base/ftdbgmem.c [!FT_DEBUG_MEMORY]: ANSI C doesn't like empty source files; however, some compilers warn about an unused variable declaration. This is now replaced with a typedef.
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2009-12-20 Werner Lemberg <[email protected]>
+
+ Fix compiler warning.
+ Reported by Sean.
+
+ * src/base/ftdbgmem.c [!FT_DEBUG_MEMORY]: ANSI C doesn't like empty
+ source files; however, some compilers warn about an unused variable
+ declaration. This is now replaced with a typedef.
+
2009-12-18 Werner Lemberg <[email protected]>
Fix Savannah bug #28320.
--- a/src/base/ftdbgmem.c
+++ b/src/base/ftdbgmem.c
@@ -989,7 +989,7 @@
#else /* !FT_DEBUG_MEMORY */
/* ANSI C doesn't like empty source files */
- static const FT_Byte _debug_mem_dummy = 0;
+ typedef int _debug_mem_dummy;
#endif /* !FT_DEBUG_MEMORY */