1
0
Fork 0
forked from len0rd/rockbox

TCC730 slight stylistic improvement

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6081 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jean-Philippe Bernardy 2005-02-28 09:49:48 +00:00
parent 5426994398
commit 5abca3c226

View file

@ -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;
}