Index: /trunk/ppStack/src/ppStackCamera.c
===================================================================
--- /trunk/ppStack/src/ppStackCamera.c	(revision 17915)
+++ /trunk/ppStack/src/ppStackCamera.c	(revision 17916)
@@ -243,5 +243,5 @@
 
     // Output image
-    pmFPA *fpa = pmFPAConstruct(config->camera); // FPA to contain the output
+    pmFPA *fpa = pmFPAConstruct(config->camera, config->cameraName); // FPA to contain the output
     if (!fpa) {
         psError(PS_ERR_UNEXPECTED_NULL, false, "Unable to construct an FPA from camera configuration.");
Index: /trunk/pswarp/src/pswarpDefineSkycell.c
===================================================================
--- /trunk/pswarp/src/pswarpDefineSkycell.c	(revision 17915)
+++ /trunk/pswarp/src/pswarpDefineSkycell.c	(revision 17916)
@@ -80,5 +80,5 @@
 
     // build the template fpa, set up the basic view
-    fpa = pmFPAConstruct (skyConfig->camera);
+    fpa = pmFPAConstruct (skyConfig->camera, skyConfig->cameraName);
     if (!fpa) {
         psError(PS_ERR_IO, false, "Failed to construct FPA from %s", realName);
@@ -119,9 +119,9 @@
     pmFPAview *view = pmFPAAddSourceFromHeader (fpa, phu, format);
     if (!view) {
-	psError(PS_ERR_IO, false, "Unable to determine source for %s", file->name);
-	psFree(phu);
-	psFree (fpa);
-	psFree (format);
-	return false;
+        psError(PS_ERR_IO, false, "Unable to determine source for %s", file->name);
+        psFree(phu);
+        psFree (fpa);
+        psFree (format);
+        return false;
     }
 
