svn commit: r230371 - head/lib/msun/src
David Schultz
das at FreeBSD.org
Fri Jan 20 07:02:43 UTC 2012
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);
More information about the svn-src-all
mailing list