diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2007-03-29 05:53:46 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2007-03-29 05:53:46 +0000 |
commit | d7670647e5ac6867eb7c79fc761c41e81a3dbb9a (patch) | |
tree | 8101c6719c34368668066d5e9cd3203d93250ad6 /firmware/target/coldfire | |
parent | e754b16f4b64920d581b4eba90e776c7fd4b920b (diff) |
Fix errors. What an errant keystroke when saving can accomplish.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12957 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/coldfire')
-rw-r--r-- | firmware/target/coldfire/system-target.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/coldfire/system-target.h b/firmware/target/coldfire/system-target.h index 06589ae813..06d2c2d603 100644 --- a/firmware/target/coldfire/system-target.h +++ b/firmware/target/coldfire/system-target.h @@ -87,7 +87,7 @@ static inline uint16_t swap16(uint16_t value) return (value >> 8) | (value << 8); } -static inline uint32_t SWAW32(uint32_tg value) +static inline uint32_t SWAW32(uint32_t value) /* result[31..16] = value[15.. 0]; result[15.. 0] = value[31..16]; |