diff options
-rw-r--r-- | linux-user/qemu.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/linux-user/qemu.h b/linux-user/qemu.h index 00c6549d88..e66a02bce3 100644 --- a/linux-user/qemu.h +++ b/linux-user/qemu.h @@ -264,8 +264,7 @@ static inline int access_ok(int type, abi_ulong addr, abi_ulong size) */ #define __put_user(x, hptr)\ ({\ - int size = sizeof(*hptr);\ - switch(size) {\ + switch(sizeof(*hptr)) {\ case 1:\ *(uint8_t *)(hptr) = (uint8_t)(typeof(*hptr))(x);\ break;\ @@ -286,8 +285,7 @@ static inline int access_ok(int type, abi_ulong addr, abi_ulong size) #define __get_user(x, hptr) \ ({\ - int size = sizeof(*hptr);\ - switch(size) {\ + switch(sizeof(*hptr)) {\ case 1:\ x = (typeof(*hptr))*(uint8_t *)(hptr);\ break;\ |