diff options
author | Eric Andersen | 2003-12-19 10:34:36 +0000 |
---|---|---|
committer | Eric Andersen | 2003-12-19 10:34:36 +0000 |
commit | 07d2f4052f2130f8f2147e7d52dd9bc060179f9f (patch) | |
tree | 417612cbfb227da8cc452bfefa8a9fa1ff92f6cd /util-linux/fdisk.c | |
parent | 850b05fbde26981347dbc522592d33530e9009bd (diff) | |
download | busybox-07d2f4052f2130f8f2147e7d52dd9bc060179f9f.zip busybox-07d2f4052f2130f8f2147e7d52dd9bc060179f9f.tar.gz |
vodz noticed we need to cast things back to an unsigned long
or the syscall will not get the proper arguments.
Diffstat (limited to 'util-linux/fdisk.c')
-rw-r--r-- | util-linux/fdisk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c index 31a7d80..2088e6c 100644 --- a/util-linux/fdisk.c +++ b/util-linux/fdisk.c @@ -870,8 +870,8 @@ static fdisk_loff_t my_llseek (unsigned int f_d, fdisk_loff_t offset, fdisk_loff_t result; int retval; - retval = syscall(__NR__llseek, f_d, ((unsigned long long) offset) >> 32, - ((unsigned long long) offset) & 0xffffffff, + retval = syscall(__NR__llseek, f_d, (unsigned long)(((unsigned long long) offset) >> 32), + (unsigned long)(((unsigned long long) offset) & 0xffffffff), &result, origin); return (retval == -1 ? (fdisk_loff_t) retval : result); } |