lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [lmi] master 5cc39664 03/22: Move a closing brace


From: Greg Chicares
Subject: [lmi-commits] [lmi] master 5cc39664 03/22: Move a closing brace
Date: Fri, 20 May 2022 22:43:41 -0400 (EDT)

branch: master
commit 5cc39664f641432edb2114c3989cb44ad32b282d
Author: Gregory W. Chicares <gchicares@sbcglobal.net>
Commit: Gregory W. Chicares <gchicares@sbcglobal.net>

    Move a closing brace
    
    For consistency, move closing brace to align with its conditional.
---
 fdlibm_log1p.c.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/fdlibm_log1p.c.txt b/fdlibm_log1p.c.txt
index 48952dcf..29b5eb24 100644
--- a/fdlibm_log1p.c.txt
+++ b/fdlibm_log1p.c.txt
@@ -339,7 +339,8 @@ static double zero = 0.0;
                 return x - x*x*0.5;
         }
         if(hx>0||hx<=((int)0xbfd2bec3)) {
-            k=0;f=x;hu=1;}                      /* -0.2929<x<0.41422 */
+            k=0;f=x;hu=1;                       /* -0.2929<x<0.41422 */
+        }
     }
     if (hx >= 0x7ff00000) return x+x;
     if(k!=0) {



reply via email to

[Prev in Thread] Current Thread [Next in Thread]