From c658d255e919d40619cc2a5730d502c7777830cc Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sat, 8 Oct 2011 15:25:08 -0700 Subject: Fix some nit warnings. --- sysdeps/ieee754/flt-32/s_isinf_nsf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sysdeps/ieee754/flt-32/s_isinf_nsf.c') diff --git a/sysdeps/ieee754/flt-32/s_isinf_nsf.c b/sysdeps/ieee754/flt-32/s_isinf_nsf.c index bc37785168..1e46e2ce4a 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; } -- cgit 1.4.1