From d718786c681385941da52fc1754cc915afbb4f28 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Wed, 6 Oct 2004 23:16:38 +0000 Subject: The endian swap macros should be unsigned. This fixes the FAT16 issue. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5195 a1c6a512-1295-4272-9138-f99709370657 --- firmware/export/system.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'firmware/export/system.h') diff --git a/firmware/export/system.h b/firmware/export/system.h index edbfee31e1..fc0b7506bc 100644 --- a/firmware/export/system.h +++ b/firmware/export/system.h @@ -93,7 +93,7 @@ static inline int set_irq_level(int level) return i; } -static inline short SWAB16(short value) +static inline unsigned short SWAB16(unsigned short value) /* result[15..8] = value[ 7..0]; result[ 7..0] = value[15..8]; @@ -104,7 +104,7 @@ static inline short SWAB16(short value) return result; } -static inline long SWAW32(long value) +static inline unsigned long SWAW32(unsigned long value) /* result[31..16] = value[15.. 0]; result[15.. 0] = value[31..16]; @@ -115,7 +115,7 @@ static inline long SWAW32(long value) return result; } -static inline long SWAB32(long value) +static inline unsigned long SWAB32(unsigned long value) /* result[31..24] = value[ 7.. 0]; result[23..16] = value[15.. 8]; -- cgit v1.2.3