From cae8899646b7acc7e5b27c14624a027f5240787f Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 16 Nov 1998 19:12:54 +0000 Subject: Update. 1998-11-17 Geoff Keating * sysdeps/unix/sysv/linux/powerpc/pwrite.c: Prototype the syscall under the right name (squish warning). * sysdeps/unix/sysv/linux/powerpc/pwrite64.c: Likewise. 1998-11-17 Geoff Keating * stdio-common/_itoa.c (_itoa): Add redundant parentheses to prevent warnings. --- ChangeLog | 11 +++++++++++ stdio-common/_itoa.c | 6 +++--- sysdeps/unix/sysv/linux/powerpc/pwrite.c | 2 +- sysdeps/unix/sysv/linux/powerpc/pwrite64.c | 2 +- 4 files changed, 16 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index f9866ffa37..7dc183bd82 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +1998-11-17 Geoff Keating + + * sysdeps/unix/sysv/linux/powerpc/pwrite.c: Prototype the syscall + under the right name (squish warning). + * sysdeps/unix/sysv/linux/powerpc/pwrite64.c: Likewise. + +1998-11-17 Geoff Keating + + * stdio-common/_itoa.c (_itoa): Add redundant parentheses to + prevent warnings. + 1998-11-16 Ulrich Drepper * intl/locale.alias: Change `japanese' alais to match X11R6's. diff --git a/stdio-common/_itoa.c b/stdio-common/_itoa.c index e3b0533476..72949ea8fb 100644 --- a/stdio-common/_itoa.c +++ b/stdio-common/_itoa.c @@ -278,8 +278,8 @@ _itoa (value, buflim, base, upper_case) if (big_normalization_steps == 0) xh = 0; else - xh = (mp_limb_t) (value >> 64 - big_normalization_steps); - xl = (mp_limb_t) (value >> 32 - big_normalization_steps); + xh = (mp_limb_t) (value >> (64 - big_normalization_steps)); + xl = (mp_limb_t) (value >> (32 - big_normalization_steps)); udiv_qrnnd_preinv (x1hi, r, xh, xl, big_base_norm, brec->big.base_ninv); @@ -292,7 +292,7 @@ _itoa (value, buflim, base, upper_case) xh = x1hi; else xh = ((x1hi << big_normalization_steps) - | (x1lo >> 32 - big_normalization_steps)); + | (x1lo >> (32 - big_normalization_steps))); xl = x1lo << big_normalization_steps; udiv_qrnnd_preinv (t[0], x, xh, xl, big_base_norm, big_normalization_steps); diff --git a/sysdeps/unix/sysv/linux/powerpc/pwrite.c b/sysdeps/unix/sysv/linux/powerpc/pwrite.c index b77dc31256..fea67c5167 100644 --- a/sysdeps/unix/sysv/linux/powerpc/pwrite.c +++ b/sysdeps/unix/sysv/linux/powerpc/pwrite.c @@ -25,7 +25,7 @@ #ifdef __NR_pwrite -extern ssize_t __syscall_pwrite64 (int fd, const void *buf, size_t count, +extern ssize_t __syscall_pwrite (int fd, const void *buf, size_t count, off64_t offset); static ssize_t __emulate_pwrite (int fd, const void *buf, size_t count, diff --git a/sysdeps/unix/sysv/linux/powerpc/pwrite64.c b/sysdeps/unix/sysv/linux/powerpc/pwrite64.c index bcc7d82f5c..4677dea34d 100644 --- a/sysdeps/unix/sysv/linux/powerpc/pwrite64.c +++ b/sysdeps/unix/sysv/linux/powerpc/pwrite64.c @@ -25,7 +25,7 @@ #ifdef __NR_pwrite -extern ssize_t __syscall_pwrite64 (int fd, const void *buf, size_t count, +extern ssize_t __syscall_pwrite (int fd, const void *buf, size_t count, off64_t offset); static ssize_t __emulate_pwrite64 (int fd, const void *buf, size_t count, -- cgit v1.2.3