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);
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to