linux-user: spelling fixes: othe, necesary

Fixes: e34136d930 "linux-user/ppc: Add vdso"
Fixes: 86f04735ac "linux-user: Fix brk() to release pages"
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
Michael Tokarev 2023-11-14 19:07:15 +03:00
parent 9bfba08a1f
commit 2cf91b9ae6
2 changed files with 2 additions and 2 deletions

View file

@ -831,7 +831,7 @@ abi_long do_brk(abi_ulong brk_val)
return target_brk;
}
/* Release heap if necesary */
/* Release heap if necessary */
if (new_brk < old_brk) {
target_munmap(new_brk, old_brk - new_brk);