Index: trunk/psModules/src/camera/pmFPAWrite.c
===================================================================
--- trunk/psModules/src/camera/pmFPAWrite.c	(revision 12696)
+++ trunk/psModules/src/camera/pmFPAWrite.c	(revision 12705)
@@ -34,5 +34,5 @@
 
 // Update the FPA.NAME, CHIP.NAME and CELL.NAME in the FITS header, if required
-static bool updateNames(pmFPA *fpa, pmChip *chip, pmCell *cell)
+bool pmFPAUpdateNames(pmFPA *fpa, pmChip *chip, pmCell *cell)
 {
     pmHDU *hdu = pmHDUGetHighest(fpa, chip, cell); // Highest HDU, i.e., the PHU
@@ -143,5 +143,5 @@
     if (writeBlank || writeImage) {
 
-        updateNames(cell->parent->parent, cell->parent, cell);
+        pmFPAUpdateNames(cell->parent->parent, cell->parent, cell);
         pmConceptSource source = PM_CONCEPT_SOURCE_HEADER | PM_CONCEPT_SOURCE_CELLS |
                                  PM_CONCEPT_SOURCE_DEFAULTS;
@@ -193,5 +193,5 @@
 
         if (writeBlank || writeImage) {
-            updateNames(chip->parent, chip, NULL);
+            pmFPAUpdateNames(chip->parent, chip, NULL);
             pmConceptSource source = PM_CONCEPT_SOURCE_HEADER | PM_CONCEPT_SOURCE_CELLS |
                                      PM_CONCEPT_SOURCE_DEFAULTS;
@@ -257,5 +257,5 @@
 
         if (writeBlank || writeImage) {
-            updateNames(fpa, NULL, NULL);
+            pmFPAUpdateNames(fpa, NULL, NULL);
             pmConceptSource source = PM_CONCEPT_SOURCE_HEADER | PM_CONCEPT_SOURCE_CELLS |
                                      PM_CONCEPT_SOURCE_DEFAULTS;
