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:
parent
5426994398
commit
5abca3c226
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue