Browse Source

bsd-user: style tweak: keyword space (

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Warner Losh <imp@bsdimp.com>
Warner Losh 4 năm trước cách đây
mục cha
commit
f4a1016fb3
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      bsd-user/uaccess.c

+ 1 - 1
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)