From c933f27a3a932bbe9921a1d94b45e4db94b21a5f Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Mon, 16 Apr 2012 17:41:13 +0200 Subject: [PATCH] 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 --- file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.50.1