summaryrefslogtreecommitdiff
path: root/bsd-user/uaccess.c
diff options
context:
space:
mode:
authorWarner Losh <imp@bsdimp.com>2021-04-23 09:05:58 -0600
committerWarner Losh <imp@bsdimp.com>2021-05-11 11:07:22 -0600
commitf4a1016fb375b9a4c454002db5dabaf145086d1a (patch)
treea5d3fcabacaf753f6371deb8422f4859d521abbb /bsd-user/uaccess.c
parent86545e7afe3f822b8561c7ceee7540fc3b19c3f0 (diff)
downloadqemu-f4a1016fb375b9a4c454002db5dabaf145086d1a.zip
bsd-user: style tweak: keyword space (
Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Warner Losh <imp@bsdimp.com>
Diffstat (limited to 'bsd-user/uaccess.c')
-rw-r--r--bsd-user/uaccess.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bsd-user/uaccess.c b/bsd-user/uaccess.c
index 91e2067933..89163257f4 100644
--- a/bsd-user/uaccess.c
+++ b/bsd-user/uaccess.c
@@ -46,7 +46,7 @@ abi_long target_strlen(abi_ulong guest_addr1)
int max_len, len;
guest_addr = guest_addr1;
- for(;;) {
+ for (;;) {
max_len = TARGET_PAGE_SIZE - (guest_addr & ~TARGET_PAGE_MASK);
ptr = lock_user(VERIFY_READ, guest_addr, max_len, 1);
if (!ptr)