Index: trunk/psModules/src/camera/pmFPAview.c
===================================================================
--- trunk/psModules/src/camera/pmFPAview.c	(revision 15093)
+++ trunk/psModules/src/camera/pmFPAview.c	(revision 15096)
@@ -3,6 +3,6 @@
  *  @author EAM, IfA
  *
- *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2007-09-29 01:19:47 $
+ *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-09-29 01:26:55 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -323,5 +323,5 @@
 
 pmFPAview *pmFPAviewGenerate(const pmFPA *fpa, const pmChip *chip, const pmCell *cell,
-                             const pmReadout *reaodut)
+                             const pmReadout *readout)
 {
     PS_ASSERT_PTR_NON_NULL(fpa, NULL);
@@ -335,5 +335,5 @@
     for (view->chip = 0; view->chip < fpa->chips->n && fpa->chips->data[view->chip] != chip; view->chip++);
     if (view->chip == fpa->chips->n) {
-        psError(PS_ERR_UNKNOWN, true, "Unable to find chip %x in fpa.", chip);
+        psError(PS_ERR_UNKNOWN, true, "Unable to find chip %p in fpa.", chip);
         psFree(view);
         return NULL;
@@ -346,5 +346,5 @@
     for (view->cell = 0; view->cell < chip->cells->n && chip->cells->data[view->cell] != cell; view->cell++);
     if (view->cell == chip->cells->n) {
-        psError(PS_ERR_UNKNOWN, true, "Unable to find cell %x in chip.", cell);
+        psError(PS_ERR_UNKNOWN, true, "Unable to find cell %p in chip.", cell);
         psFree(view);
         return NULL;
@@ -359,5 +359,5 @@
          view->readout++);
     if (view->readout == cell->readouts->n) {
-        psError(PS_ERR_UNKNOWN, true, "Unable to find readout %x in cell.", readout);
+        psError(PS_ERR_UNKNOWN, true, "Unable to find readout %p in cell.", readout);
         psFree(view);
         return NULL;
