summaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-08-26 06:29:13 +0000
committerUlrich Drepper <drepper@redhat.com>1999-08-26 06:29:13 +0000
commitb3af0a7c12e899fd72a6a3f34e8ad87523e5734e (patch)
treeafc6e71e54c058a058e0850068a901d06054d7c1 /sysdeps
parentc1a990bf755d686cbac6a9cd5e442a0c5d828d0d (diff)
(__finite): Make constant as unsigned to avoid warning.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/i386/fpu/bits/mathinline.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/i386/fpu/bits/mathinline.h b/sysdeps/i386/fpu/bits/mathinline.h
index 8fb22d48d2..7519ea6e3e 100644
--- a/sysdeps/i386/fpu/bits/mathinline.h
+++ b/sysdeps/i386/fpu/bits/mathinline.h
@@ -641,7 +641,7 @@ __finite (double __x)
{
return (__extension__
(((((union { double __d; int __i[2]; }) {__d: __x}).__i[1]
- | 0x800fffff) + 1) >> 31));
+ | 0x800fffffu) + 1) >> 31));
}
/* Miscellaneous functions */