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. --- stdio-common/_itoa.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'stdio-common') 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); -- cgit v1.2.3