Index: trunk/psLib/src/collections/psBitSet.c
===================================================================
--- trunk/psLib/src/collections/psBitSet.c	(revision 1172)
+++ trunk/psLib/src/collections/psBitSet.c	(revision 1385)
@@ -10,6 +10,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-07-01 21:48:11 $
+ *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-04 23:37:39 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -126,11 +126,13 @@
         psError(__func__, " : Line %d - Null psBitSet for inBitSet argument", __LINE__);
         return inBitSet;
-    } else if(bit < 0) {
-        psError(__func__, " : Line %d - Bit position too small: %d", __LINE__, bit);
-        return inBitSet;
-    } else if(bit > inBitSet->n*8-1) {
-        psError(__func__, " : Line %d - Bit position too large: %d", __LINE__, bit);
-        return inBitSet;
-    }
+    } else
+        if(bit < 0) {
+            psError(__func__, " : Line %d - Bit position too small: %d", __LINE__, bit);
+            return inBitSet;
+        } else
+            if(bit > inBitSet->n*8-1) {
+                psError(__func__, " : Line %d - Bit position too large: %d", __LINE__, bit);
+                return inBitSet;
+            }
 
     // Variable byte is the byte in the array that contains the bit to be set
@@ -148,11 +150,13 @@
         psError(__func__, " : Line %d - Null psBitSet for inBitSet argument", __LINE__);
         return 0;
-    } else if(bit < 0) {
-        psError(__func__, " : Line %d - Bit position too small: %d", __LINE__, bit);
-        return 0;
-    } else if(bit > inBitSet->n*8-1) {
-        psError(__func__, " : Line %d - Bit position too large: %d", __LINE__, bit);
-        return 0;
-    }
+    } else
+        if(bit < 0) {
+            psError(__func__, " : Line %d - Bit position too small: %d", __LINE__, bit);
+            return 0;
+        } else
+            if(bit > inBitSet->n*8-1) {
+                psError(__func__, " : Line %d - Bit position too large: %d", __LINE__, bit);
+                return 0;
+            }
 
     // Variable byte is the byte in the array that contains the bit to be tested
