Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 Oct 2011 05:36:23 +0000 (UTC)
From:      David Schultz <das@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r226411 - head/lib/msun/src
Message-ID:  <201110160536.p9G5aNRU047083@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: das
Date: Sun Oct 16 05:36:23 2011
New Revision: 226411
URL: http://svn.freebsd.org/changeset/base/226411

Log:
  Remove an unused variable.

Modified:
  head/lib/msun/src/e_log10f.c

Modified: head/lib/msun/src/e_log10f.c
==============================================================================
--- head/lib/msun/src/e_log10f.c	Sat Oct 15 23:15:55 2011	(r226410)
+++ head/lib/msun/src/e_log10f.c	Sun Oct 16 05:36:23 2011	(r226411)
@@ -32,7 +32,7 @@ static const float zero   =  0.0;
 float
 __ieee754_log10f(float x)
 {
-	float f,hfsq,hi,lo,r,y,y2;
+	float f,hfsq,hi,lo,r,y;
 	int32_t i,k,hx;
 
 	GET_FLOAT_WORD(hx,x);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201110160536.p9G5aNRU047083>