diff options
author | 2007-03-10 13:27:33 +0000 | |
---|---|---|
committer | 2007-03-10 13:27:33 +0000 | |
commit | bf197625a264b8e64cc2b7ea2d347d3dc32b0037 (patch) | |
tree | 97e165c3dac1cf22cd0d4f0cdc0525f3abd21397 /sys-block/gpart/files | |
parent | net-news/snownews: remove olds (diff) | |
download | historical-bf197625a264b8e64cc2b7ea2d347d3dc32b0037.tar.gz historical-bf197625a264b8e64cc2b7ea2d347d3dc32b0037.tar.bz2 historical-bf197625a264b8e64cc2b7ea2d347d3dc32b0037.zip |
fix arguments to llseek() syscall, not libc call #170203
Package-Manager: portage-2.1.2.2
Diffstat (limited to 'sys-block/gpart/files')
-rw-r--r-- | sys-block/gpart/files/gpart-0.1h-no-_syscall.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-block/gpart/files/gpart-0.1h-no-_syscall.patch b/sys-block/gpart/files/gpart-0.1h-no-_syscall.patch index b50bcd2d75e9..fe68d08b6f4b 100644 --- a/sys-block/gpart/files/gpart-0.1h-no-_syscall.patch +++ b/sys-block/gpart/files/gpart-0.1h-no-_syscall.patch @@ -9,7 +9,7 @@ http://bugs.gentoo.org/163800 #if defined(__linux__) && defined(__i386__) && ! defined(__PIC__) -_syscall5(int,_llseek,uint,fd,ulong,hi,ulong,lo,loff_t *,res,uint,wh) -+#define _llseek(fildes,offset,whence) syscall(__NR__llseek,fildes,offset,whence) ++#define _llseek(fd,hi,lo,res,wh) syscall(__NR__llseek,fd,hi,lo,res,wh) #endif |