svn commit: r240865 - head/lib/msun/ld80

Steve Kargl kargl at FreeBSD.org
Sun Sep 23 18:13:47 UTC 2012


Author: kargl
Date: Sun Sep 23 18:13:46 2012
New Revision: 240865
URL: http://svn.freebsd.org/changeset/base/240865

Log:
  Fix whitespace issue.
  
  Approved by:	das (mentor, implicit)

Modified:
  head/lib/msun/ld80/s_expl.c

Modified: head/lib/msun/ld80/s_expl.c
==============================================================================
--- head/lib/msun/ld80/s_expl.c	Sun Sep 23 18:06:27 2012	(r240864)
+++ head/lib/msun/ld80/s_expl.c	Sun Sep 23 18:13:46 2012	(r240865)
@@ -251,7 +251,7 @@ expl(long double x)
 			return (tiny * tiny);
 	} else if (ix <= BIAS - 34) {	/* |x| < 0x1p-33 */
 					/* includes pseudo-denormals */
-	    	if (huge + x > 1.0L)	/* trigger inexact iff x != 0 */
+		if (huge + x > 1.0L)	/* trigger inexact iff x != 0 */
 			return (1.0L + x);
 	}
 


More information about the svn-src-all mailing list