From 2cf91b9ae6df17ac99dd212016e2d204cc2f6a74 Mon Sep 17 00:00:00 2001 From: Michael Tokarev Date: Tue, 14 Nov 2023 19:07:15 +0300 Subject: linux-user: spelling fixes: othe, necesary Fixes: e34136d93059 "linux-user/ppc: Add vdso" Fixes: 86f04735ac20 "linux-user: Fix brk() to release pages" Reviewed-by: Thomas Huth Signed-off-by: Michael Tokarev --- linux-user/syscall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'linux-user/syscall.c') diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 65ac3ac796..16ca5ea7b6 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -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); -- cgit v1.2.3