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 <hongjiu.lu@intel.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
H.J. Lu 2012-04-16 17:41:13 +02:00 committed by Denys Vlasenko
parent 35be58119e
commit c933f27a3a

2
file.c
View File

@ -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)
{