diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-17 22:20:44 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-17 22:20:44 +0000 |
commit | 3be2308676607bdb0e901d439e288081c39011a4 (patch) | |
tree | 717299afe02e9f34ab6d8b15fa5f14df5877289f /include/platform.h | |
parent | 66cb86e48962ed96184ef3d1957a8a18c668e47a (diff) | |
download | busybox-w32-3be2308676607bdb0e901d439e288081c39011a4.tar.gz busybox-w32-3be2308676607bdb0e901d439e288081c39011a4.tar.bz2 busybox-w32-3be2308676607bdb0e901d439e288081c39011a4.zip |
fix move_to_unaligned32
Diffstat (limited to 'include/platform.h')
-rw-r--r-- | include/platform.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/platform.h b/include/platform.h index 47fd5f63d..317349fed 100644 --- a/include/platform.h +++ b/include/platform.h | |||
@@ -173,7 +173,10 @@ | |||
173 | /* performs reasonably well (gcc usually inlines memcpy here) */ | 173 | /* performs reasonably well (gcc usually inlines memcpy here) */ |
174 | #define move_from_unaligned16(v, u16p) (memcpy(&(v), (u16p), 2)) | 174 | #define move_from_unaligned16(v, u16p) (memcpy(&(v), (u16p), 2)) |
175 | #define move_from_unaligned32(v, u32p) (memcpy(&(v), (u32p), 4)) | 175 | #define move_from_unaligned32(v, u32p) (memcpy(&(v), (u32p), 4)) |
176 | #define move_to_unaligned32(u32p, v) (memcpy((u32p), &(v), 4)) | 176 | #define move_to_unaligned32(u32p, v) do { \ |
177 | uint32_t __t = (v); \ | ||
178 | memcpy((u32p), &__t, 4); \ | ||
179 | } while (0) | ||
177 | #endif | 180 | #endif |
178 | 181 | ||
179 | /* ---- Networking ------------------------------------------ */ | 182 | /* ---- Networking ------------------------------------------ */ |