From 89a6fe7ae49b88c11f2619cf0c9238397980c70a Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Sun, 30 Nov 2008 11:54:20 +0000 Subject: Remove extraneous semicolons, and fix a comment. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19268 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/demac/libdemac/filter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/codecs/demac/libdemac/filter.c b/apps/codecs/demac/libdemac/filter.c index 4a3eb74744..df17d357c0 100644 --- a/apps/codecs/demac/libdemac/filter.c +++ b/apps/codecs/demac/libdemac/filter.c @@ -95,12 +95,12 @@ struct filter_t { /* Convert from (32-FRACBITS).FRACBITS fixed-point format to an integer (rounding to nearest). */ #define FP_HALF (1 << (FRACBITS - 1)) /* 0.5 in fixed-point format. */ -#define FP_TO_INT(x) ((x + FP_HALF) >> FRACBITS); /* round(x) */ +#define FP_TO_INT(x) ((x + FP_HALF) >> FRACBITS) /* round(x) */ #if defined(CPU_ARM) && (ARM_ARCH >= 6) #define SATURATE(x) ({int __res; asm("ssat %0, #16, %1" : "=r"(__res) : "r"(x)); __res; }) #else -#define SATURATE(x) (LIKELY((x) == (int16_t)(x)) ? (x) : ((x) >> 31) ^ 0x7FFF); +#define SATURATE(x) (LIKELY((x) == (int16_t)(x)) ? (x) : ((x) >> 31) ^ 0x7FFF) #endif /* Apply the filter with state f to count entries in data[] */ -- cgit v1.2.3