From 5abca3c226721c819da72df970e2f0ff63fe9dc4 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Bernardy Date: Mon, 28 Feb 2005 09:49:48 +0000 Subject: TCC730 slight stylistic improvement git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6081 a1c6a512-1295-4272-9138-f99709370657 --- firmware/export/system.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/export/system.h b/firmware/export/system.h index b0f6eb65a0..f792a132e7 100644 --- a/firmware/export/system.h +++ b/firmware/export/system.h @@ -235,7 +235,7 @@ static inline unsigned long SWAB32(unsigned long value) result[ 7.. 0] = value[31..24]; */ { - unsigned short hi = SWAB16(value >> 16); + unsigned long hi = SWAB16(value >> 16); unsigned long lo = SWAB16(value & 0xffff); return (lo << 16) | hi; } -- cgit v1.2.3