Revision: 56141
          http://sourceforge.net/p/brlcad/code/56141
Author:   carlmoore
Date:     2013-07-19 20:13:27 +0000 (Fri, 19 Jul 2013)
Log Message:
-----------
remove 'else' because the consequence of TRUE is to do a return

Modified Paths:
--------------
    brlcad/trunk/src/sig/fhor.c

Modified: brlcad/trunk/src/sig/fhor.c
===================================================================
--- brlcad/trunk/src/sig/fhor.c 2013-07-19 20:12:23 UTC (rev 56140)
+++ brlcad/trunk/src/sig/fhor.c 2013-07-19 20:13:27 UTC (rev 56141)
@@ -292,10 +292,9 @@
 {
     if (i > 0)
        return 1;
-    else if (i < 0)
+    if (i < 0)
        return -1;
-    else
-       return 0;
+    return 0;
 }
 
 

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to