Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Jan 2012 07:02:42 +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: r230371 - head/lib/msun/src
Message-ID:  <201201200702.q0K72hLj028748@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: das
Date: Fri Jan 20 07:02:42 2012
New Revision: 230371
URL: http://svn.freebsd.org/changeset/base/230371

Log:
  Fix a small nit noted by bde: exp_x should be of type float, not double.

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

Modified: head/lib/msun/src/k_expf.c
==============================================================================
--- head/lib/msun/src/k_expf.c	Fri Jan 20 07:01:58 2012	(r230370)
+++ head/lib/msun/src/k_expf.c	Fri Jan 20 07:02:42 2012	(r230371)
@@ -44,7 +44,7 @@ static const float kln2 =  162.88958740F
 static float
 __frexp_expf(float x, int *expt)
 {
-	double exp_x;
+	float exp_x;
 	uint32_t hx;
 
 	exp_x = expf(x - kln2);



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