aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2011-10-08 15:25:08 -0700
committerRoland McGrath <roland@hack.frob.com>2011-10-08 15:25:08 -0700
commitc658d255e919d40619cc2a5730d502c7777830cc (patch)
treefa11abc61bc1b46d51ee850bfbe599df924849a6 /sysdeps
parent7edb55ce06ab1fa716a062cd1cb6682585bb449d (diff)
downloadglibc-c658d255e919d40619cc2a5730d502c7777830cc.zip
glibc-c658d255e919d40619cc2a5730d502c7777830cc.tar.gz
glibc-c658d255e919d40619cc2a5730d502c7777830cc.tar.bz2
Fix some nit warnings.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/ieee754/flt-32/s_isinf_nsf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/ieee754/flt-32/s_isinf_nsf.c b/sysdeps/ieee754/flt-32/s_isinf_nsf.c
index bc37785..1e46e2c 100644
--- a/sysdeps/ieee754/flt-32/s_isinf_nsf.c
+++ b/sysdeps/ieee754/flt-32/s_isinf_nsf.c
@@ -14,7 +14,7 @@
int
__isinf_nsf (float x)
{
- int32_t ix,t;
+ int32_t ix;
GET_FLOAT_WORD(ix,x);
return (ix & 0x7fffffff) == 0x7f800000;
}