From: Warner Losh Date: Fri, 23 Apr 2021 15:05:57 +0000 (-0600) Subject: bsd-user: style tweak: keyword space ( X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=cefbade1739fe18da295f6cf1d3d6f1acab280bb;p=qemu.git bsd-user: style tweak: keyword space ( Reviewed-by: Richard Henderson Signed-off-by: Warner Losh --- diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h index d2bcaab741..b836b603af 100644 --- a/bsd-user/qemu.h +++ b/bsd-user/qemu.h @@ -233,7 +233,7 @@ static inline bool access_ok(int type, abi_ulong addr, abi_ulong size) #define __put_user(x, hptr)\ ({\ int size = sizeof(*hptr);\ - switch(size) {\ + switch (size) {\ case 1:\ *(uint8_t *)(hptr) = (uint8_t)(typeof(*hptr))(x);\ break;\ @@ -255,7 +255,7 @@ static inline bool access_ok(int type, abi_ulong addr, abi_ulong size) #define __get_user(x, hptr) \ ({\ int size = sizeof(*hptr);\ - switch(size) {\ + switch (size) {\ case 1:\ x = (typeof(*hptr))*(uint8_t *)(hptr);\ break;\