Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 23 Sep 2012 18:13:47 +0000 (UTC)
From:      Steve Kargl <kargl@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r240865 - head/lib/msun/ld80
Message-ID:  <201209231813.q8NIDlIB049661@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);
 	}
 



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