]> git.mxchange.org Git - flightgear.git/commitdiff
UIUC cleanup of -Wparentheses compilation warnings.
authorEdward d'Auvergne <edward@nmr-relax.com>
Thu, 10 Dec 2015 07:25:17 +0000 (08:25 +0100)
committerEdward d'Auvergne <edward@nmr-relax.com>
Thu, 10 Dec 2015 08:04:09 +0000 (09:04 +0100)
src/FDM/UIUCModel/uiuc_aerodeflections.cpp

index 191feb5340b8f75e908454a0d18a73c42803fac9..8d192b52f2d850822d7cad4dc6a9b17cbb40056b 100644 (file)
@@ -189,11 +189,12 @@ void uiuc_aerodeflections( double dt )
     else
       aileron += aileron_sas;
     // don't exceed aileron deflection limits
-    if (fabs(aileron) > (damax * DEG_TO_RAD))
+    if (fabs(aileron) > (damax * DEG_TO_RAD)) {
       if (aileron > 0)
        aileron =  damax * DEG_TO_RAD;
       else
        aileron = -damax * DEG_TO_RAD;
+    }
   }
   
   // SAS for yaw, positive rudder deflection is TEL
@@ -213,11 +214,12 @@ void uiuc_aerodeflections( double dt )
       rudder += rudder_sas;
     // don't exceed rudder deflection limits, assumes drmax = drmin, 
     // i.e. equal rudder throws left and right
-    if (fabs(rudder) > drmax)
+    if (fabs(rudder) > drmax) {
       if (rudder > 0)
        rudder =  drmax * DEG_TO_RAD;
       else
        rudder = -drmax * DEG_TO_RAD;
+    }
   }
   
   /* This old code in the first part of the if-block needs to get removed from FGFS. 030222 MSS