linux-user: Fix error conversion in 64-bit fadvise syscall

Fix a missing host-to-target errno conversion in the 64-bit
fadvise syscall emulation.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
master
Peter Maydell 2016-05-31 15:45:11 +01:00 committed by Riku Voipio
parent badd3cd880
commit 977d8241c1
1 changed files with 2 additions and 2 deletions

View File

@ -10035,8 +10035,8 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
default: break;
}
#endif
ret = -posix_fadvise(arg1, arg2, arg3, arg4);
break;
ret = -host_to_target_errno(posix_fadvise(arg1, arg2, arg3, arg4));
break;
#endif
#endif /* end of 64-bit ABI fadvise handling */