Index: trunk/psModules/src/camera/pmHDUGenerate.c
===================================================================
--- trunk/psModules/src/camera/pmHDUGenerate.c	(revision 9584)
+++ trunk/psModules/src/camera/pmHDUGenerate.c	(revision 9603)
@@ -449,7 +449,5 @@
 //////////////////////////////////////////////////////////////////////////////////////////////////////////////
 
-// Generate an HDU from a cell with pixels
-bool pmHDUGenerateForCell(pmCell *cell  // The cell
-                         )
+bool pmHDUGenerateForCell(pmCell *cell)
 {
     PS_ASSERT_PTR_NON_NULL(cell, false);
@@ -496,12 +494,10 @@
         return pmHDUGenerateForChip(cell->parent);
     default:
-        psAbort(__func__, "Shouldn't ever get here.\n");
+        psAbort(__func__, "Shouldn't ever get here: check your camera format configuration.\n");
     }
     return false;
 }
 
-// Generate an HDU from a chip with pixels
-bool pmHDUGenerateForChip(pmChip *chip  // The chip
-                         )
+bool pmHDUGenerateForChip(pmChip *chip)
 {
     PS_ASSERT_PTR_NON_NULL(chip, false);
@@ -546,5 +542,5 @@
         return pmHDUGenerateForFPA(chip->parent);
     default:
-        psAbort(__func__, "Shouldn't ever get here.\n");
+        psAbort(__func__, "Shouldn't ever get here: check your camera format configuration.\n");
     }
     return false;
@@ -552,7 +548,5 @@
 
 
-// Generate an HDU from an FPA with pixels
-bool pmHDUGenerateForFPA(pmFPA *fpa     // The fpa
-                        )
+bool pmHDUGenerateForFPA(pmFPA *fpa)
 {
     PS_ASSERT_PTR_NON_NULL(fpa, false);
@@ -590,5 +584,5 @@
         }
     default:
-        psAbort(__func__, "Shouldn't ever get here.\n");
+        psAbort(__func__, "Shouldn't ever get here: check your camera format configuration.\n");
     }
     return false;
