[cairo-commit] util/cairo-trace

Chris Wilson ickle at kemper.freedesktop.org
Sun Sep 13 03:22:19 PDT 2009


 util/cairo-trace/trace.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit f8a8f297f298d81899803a1b2bbca007418408b5
Author: Chris Wilson <chris at chris-wilson.co.uk>
Date:   Sun Sep 13 10:58:59 2009 +0100

    [trace] Stray trailing ';' in bswap macros

diff --git a/util/cairo-trace/trace.c b/util/cairo-trace/trace.c
index 2f0d063..5a1f908 100644
--- a/util/cairo-trace/trace.c
+++ b/util/cairo-trace/trace.c
@@ -52,14 +52,14 @@
 #ifndef bswap_16
 # define bswap_16(p) \
 	(((((uint16_t)(p)) & 0x00ff) << 8) | \
-	  (((uint16_t)(p))           >> 8));
+	  (((uint16_t)(p))           >> 8))
 #endif
 #ifndef bswap_32
 # define bswap_32(p) \
          (((((uint32_t)(p)) & 0x000000ff) << 24) | \
 	  ((((uint32_t)(p)) & 0x0000ff00) << 8)  | \
 	  ((((uint32_t)(p)) & 0x00ff0000) >> 8)  | \
-	  ((((uint32_t)(p)))              >> 24));
+	  ((((uint32_t)(p)))              >> 24))
 #endif
 
 #if CAIRO_HAS_SYMBOL_LOOKUP


More information about the cairo-commit mailing list