From: Ulrich Drepper Date: Thu, 26 Aug 1999 06:29:13 +0000 (+0000) Subject: (__finite): Make constant as unsigned to avoid warning. X-Git-Tag: cvs/glibc_2-1-2~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b3af0a7c12e899fd72a6a3f34e8ad87523e5734e;p=thirdparty%2Fglibc.git (__finite): Make constant as unsigned to avoid warning. --- diff --git a/sysdeps/i386/fpu/bits/mathinline.h b/sysdeps/i386/fpu/bits/mathinline.h index 8fb22d48d2e..7519ea6e3e5 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 */