Index: trunk/psModules/src/pmReadoutCombine.c
===================================================================
--- trunk/psModules/src/pmReadoutCombine.c	(revision 4168)
+++ trunk/psModules/src/pmReadoutCombine.c	(revision 4425)
@@ -5,6 +5,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-09 00:59:54 $
+ *  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-29 01:39:10 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -18,8 +18,8 @@
 
 /******************************************************************************
-p_psDetermineNumBits(data): This routine takes an enum psStatsOptions as an
+DetermineNumBits(data): This routine takes an enum psStatsOptions as an
 argument and returns the number of non-zero bits.
  *****************************************************************************/
-psStatsOptions DetermineNumBits(psStatsOptions data)
+static psS32 DetermineNumBits(psStatsOptions data)
 {
     psS32 i;
@@ -27,5 +27,5 @@
     psS32 numBits = 0;
 
-    for (i=0;i<8 * sizeof(psStatsOptions);i++) {
+    for (i=0;i<(8 * sizeof(psStatsOptions));i++) {
         if (0x0001 & tmpData) {
             numBits++;
@@ -37,7 +37,4 @@
 
 /******************************************************************************
-p_psDetermineNumBits(data): This routine takes an enum psStatsOptions as an
-argument and returns the number of non-zero bits.
- 
 XXX: Must add support for S16 and S32 types.  F32 currently supported.
  *****************************************************************************/
