From af1680f1f9926a0662fc35a53c491d2eec1ab262 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 9 Dec 1999 01:39:16 +0000 Subject: Update. * elf/readlib.c: Include a.out.h last since the Linux/Alpha headers are not clean enough. --- sysdeps/unix/sysv/linux/truncate64.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'sysdeps/unix/sysv/linux/truncate64.c') diff --git a/sysdeps/unix/sysv/linux/truncate64.c b/sysdeps/unix/sysv/linux/truncate64.c index 0a20547789..42b72731a9 100644 --- a/sysdeps/unix/sysv/linux/truncate64.c +++ b/sysdeps/unix/sysv/linux/truncate64.c @@ -41,8 +41,9 @@ truncate64 (path, length) if (! have_no_truncate64) #endif { - int result = INLINE_SYSCALL (truncate64, 3, path, length >> 32, - length & 0xffffffff); + unsigned int low = length & 0xffffffff; + unsigned int high = length >> 32; + int result = INLINE_SYSCALL (truncate64, 3, path, low, high); #ifndef __ASSUME_TRUNCATE64_SYSCALL if (result != -1 || errno != ENOSYS) -- cgit v1.2.3