From: H.J. Lu Date: Mon, 16 Apr 2012 15:41:13 +0000 (+0200) Subject: Fix a problem with sys_lseek on x32 X-Git-Tag: v4.7~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c933f27a3a932bbe9921a1d94b45e4db94b21a5f;p=strace Fix a problem with sys_lseek on x32 * file.c (sys_lseek): Use MIPS-n32 variant also for x32 Signed-off-by: H.J. Lu Signed-off-by: Denys Vlasenko --- diff --git a/file.c b/file.c index 58585f38..5f3b506a 100644 --- a/file.c +++ b/file.c @@ -501,7 +501,7 @@ static const struct xlat whence[] = { { 0, NULL }, }; -#if defined(LINUX_MIPSN32) +#if defined(LINUX_MIPSN32) || defined(X32) int sys_lseek(struct tcb *tcp) {