Index: /trunk/ppMerge/src/ppMergeCombine.c
===================================================================
--- /trunk/ppMerge/src/ppMergeCombine.c	(revision 16906)
+++ /trunk/ppMerge/src/ppMergeCombine.c	(revision 16907)
@@ -124,20 +124,18 @@
     }
     while ((chip = pmFPAviewNextChip(view, fpa, 1))) {
-        if (!chip->hdu) {
-            continue;
-        }
-        // Data will exist soon
-        pmFPAUpdateNames(data->out, chip, NULL);
-        chip->data_exists = true;
+        if (chip->hdu) {
+            // Data will exist soon
+            pmFPAUpdateNames(data->out, chip, NULL);
+            chip->data_exists = true;
+        }
         pmChipWrite(chip, data->outFile, config->database, true, false); // Write header only
         pmCell *cell;                   // Cell of interest
         while ((cell = pmFPAviewNextCell(view, fpa, 1))) {
             cellNum++;
-            if (!cell->hdu) {
-                continue;
-            }
-            // Data will exist soon
-            pmFPAUpdateNames(data->out, chip, cell);
-            chip->data_exists = cell->data_exists = true;
+            if (cell->hdu) {
+                // Data will exist soon
+                pmFPAUpdateNames(data->out, chip, cell);
+                chip->data_exists = cell->data_exists = true;
+            }
             pmCellWrite(cell, data->outFile, config->database, true); // Write header only
             pmReadout *readout = pmReadoutAlloc(cell); // Output readout of interest
