summaryrefslogtreecommitdiff
path: root/src/smooth
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2009-01-12 20:11:14 +0000
committerWerner Lemberg <wl@gnu.org>2009-01-12 20:11:14 +0000
commitf47acf2b5fcd9d6c9dc58809ef8ecf1b1e0b46ad (patch)
tree9ed4c809bb8ee292c0965fb5292a04858e23f060 /src/smooth
parente85baf4f8e9ba09fd16d31808b6a5d31735b13bf (diff)
Avoid compiler warnings.
* */*: s/do ; while ( 0 )/do { } while ( 0 )/. Reported by Sean McBride <sean@rogue-research.com>.
Diffstat (limited to 'src/smooth')
-rw-r--r--src/smooth/ftgrays.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/smooth/ftgrays.c b/src/smooth/ftgrays.c
index 571b57a3..10fa2ae7 100644
--- a/src/smooth/ftgrays.c
+++ b/src/smooth/ftgrays.c
@@ -163,9 +163,9 @@
#else /* !FT_DEBUG_LEVEL_TRACE */
-#define FT_TRACE5( x ) do ; while ( 0 ) /* nothing */
-#define FT_TRACE7( x ) do ; while ( 0 ) /* nothing */
-#define FT_ERROR( x ) do ; while ( 0 ) /* nothing */
+#define FT_TRACE5( x ) do { } while ( 0 ) /* nothing */
+#define FT_TRACE7( x ) do { } while ( 0 ) /* nothing */
+#define FT_ERROR( x ) do { } while ( 0 ) /* nothing */
#endif /* !FT_DEBUG_LEVEL_TRACE */