aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-12-19 10:34:36 +0000
committerEric Andersen <andersen@codepoet.org>2003-12-19 10:34:36 +0000
commit07d2f4052f2130f8f2147e7d52dd9bc060179f9f (patch)
tree417612cbfb227da8cc452bfefa8a9fa1ff92f6cd /util-linux
parent850b05fbde26981347dbc522592d33530e9009bd (diff)
downloadbusybox-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')
-rw-r--r--util-linux/fdisk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c
index 31a7d8076..2088e6c67 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);
}