Index: trunk/psLib/test/dataManip/tst_psMinimize02.c
===================================================================
--- trunk/psLib/test/dataManip/tst_psMinimize02.c	(revision 1185)
+++ trunk/psLib/test/dataManip/tst_psMinimize02.c	(revision 1406)
@@ -44,7 +44,8 @@
     if (whichParamDeriv == 0) {
         tmp = 20.0 * (x - P0);
-    } else if (whichParamDeriv == 1) {
-        tmp = 40.0 * (y - P1);
-    }
+    } else
+        if (whichParamDeriv == 1) {
+            tmp = 40.0 * (y - P1);
+        }
 
     //    printf("--------- myFuncDeriv((%.1f %.1f) %.1f %.1f (%d)) is %.1f ---------\n",
@@ -83,13 +84,16 @@
         tmp = 1.0;
         tmp = x;
-    } else if (whichParamDeriv == 1) {
-        tmp = x;
-        tmp = x*x;
-    } else if (whichParamDeriv == 2) {
-        tmp = y;
-        tmp = y*y;
-    } else if (whichParamDeriv == 3) {
-        tmp = x * x * y;
-    }
+    } else
+        if (whichParamDeriv == 1) {
+            tmp = x;
+            tmp = x*x;
+        } else
+            if (whichParamDeriv == 2) {
+                tmp = y;
+                tmp = y*y;
+            } else
+                if (whichParamDeriv == 3) {
+                    tmp = x * x * y;
+                }
 
     printf("--------- myFuncDeriv((%.1f %.1f) %.1f %.1f %.1f %.1f (%d)) is %.1f ---------\n",
