]> git.proxmox.com Git - mirror_qemu.git/blobdiff - linux-user/syscall.c
Merge tag 'pull-trivial-patches' of https://gitlab.com/mjt0k/qemu into staging
[mirror_qemu.git] / linux-user / syscall.c
index 65ac3ac796397004e59ff1d241e131b14cf36015..16ca5ea7b6ce68fb04a10b0f48fd3aa485b33207 100644 (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);