summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2009-09-13 10:58:59 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2009-09-13 10:58:59 +0100
commitf8a8f297f298d81899803a1b2bbca007418408b5 (patch)
treecfb8ce51bea511a101e330a4fc55592c506ba2fa
parentf851009ec76ee2290ffbc3f55edbf3cc16aff488 (diff)
[trace] Stray trailing ';' in bswap macros
-rw-r--r--util/cairo-trace/trace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/cairo-trace/trace.c b/util/cairo-trace/trace.c
index 2f0d063b..5a1f9082 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