From owner-svn-src-all@FreeBSD.ORG Sun Sep 23 18:13:47 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9414E106564A; Sun, 23 Sep 2012 18:13:47 +0000 (UTC) (envelope-from kargl@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 612608FC1C; Sun, 23 Sep 2012 18:13:47 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q8NIDlp7049663; Sun, 23 Sep 2012 18:13:47 GMT (envelope-from kargl@svn.freebsd.org) Received: (from kargl@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q8NIDlIB049661; Sun, 23 Sep 2012 18:13:47 GMT (envelope-from kargl@svn.freebsd.org) Message-Id: <201209231813.q8NIDlIB049661@svn.freebsd.org> From: Steve Kargl Date: Sun, 23 Sep 2012 18:13:47 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r240865 - head/lib/msun/ld80 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Sep 2012 18:13:47 -0000 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); }