Skip to content

Commit

Permalink
bsd-user: style tweak: keyword space (
Browse files Browse the repository at this point in the history
Reviewed-by: Richard Henderson <[email protected]>
Signed-off-by: Warner Losh <[email protected]>
  • Loading branch information
bsdimp committed May 11, 2021
1 parent 86545e7 commit f4a1016
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bsd-user/uaccess.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit f4a1016

Please sign in to comment.