Index: trunk/psLib/test/dataManip/tst_psHist03.c
===================================================================
--- trunk/psLib/test/dataManip/tst_psHist03.c	(revision 2780)
+++ trunk/psLib/test/dataManip/tst_psHist03.c	(revision 2782)
@@ -67,9 +67,9 @@
 
         for (i=0;i<numBins;i++) {
-            if (myHist->nums->data.U32[i] != 0) {
-                printf("ERROR: myHist->nums->data.U32[%d] not initialized to 0.\n", i);
+            if (myHist->nums->data.F32[i] != 0.0) {
+                printf("ERROR: myHist->nums->data.F32[%d] not initialized to 0.\n", i);
                 testStatus = false;
             }
-            myHist->nums->data.U32[i] = 0;
+            myHist->nums->data.F32[i] = 0.0;
         }
 
@@ -91,8 +91,8 @@
         myHist = psVectorHistogram( myHist, myData, NULL, NULL, 0 );
         for (i=0;i<numBins;i++) {
-            printf("Bin number %d bounds: (%6.3f - %6.3f): data: (%d)\n", i,
+            printf("Bin number %d bounds: (%6.3f - %6.3f): data: (%f)\n", i,
                    myHist->bounds->data.F32[i],
                    myHist->bounds->data.F32[i+1],
-                   myHist->nums->data.S32[i]);
+                   myHist->nums->data.F32[i]);
         }
 
