diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-11-16 19:12:54 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-11-16 19:12:54 +0000 |
commit | cae8899646b7acc7e5b27c14624a027f5240787f (patch) | |
tree | 546aa52374b05353046b76272e1c53314df04ba4 | |
parent | 9d1efe331c8437e22b4a8110f435d92c7d38774b (diff) | |
download | glibc-cae8899646b7acc7e5b27c14624a027f5240787f.zip glibc-cae8899646b7acc7e5b27c14624a027f5240787f.tar.gz glibc-cae8899646b7acc7e5b27c14624a027f5240787f.tar.bz2 |
Update.
1998-11-17 Geoff Keating <geoffk@ozemail.com.au>
* 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 <geoffk@ozemail.com.au>
* stdio-common/_itoa.c (_itoa): Add redundant parentheses to
prevent warnings.
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | stdio-common/_itoa.c | 6 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/powerpc/pwrite.c | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/powerpc/pwrite64.c | 2 |
4 files changed, 16 insertions, 5 deletions
@@ -1,3 +1,14 @@ +1998-11-17 Geoff Keating <geoffk@ozemail.com.au> + + * 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 <geoffk@ozemail.com.au> + + * stdio-common/_itoa.c (_itoa): Add redundant parentheses to + prevent warnings. + 1998-11-16 Ulrich Drepper <drepper@cygnus.com> * intl/locale.alias: Change `japanese' alais to match X11R6's. diff --git a/stdio-common/_itoa.c b/stdio-common/_itoa.c index e3b0533..72949ea 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 b77dc31..fea67c5 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 bcc7d82..4677dea 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, |