Index: trunk/magic/remove/src/streaksremove.c
===================================================================
--- trunk/magic/remove/src/streaksremove.c	(revision 27468)
+++ trunk/magic/remove/src/streaksremove.c	(revision 27469)
@@ -104,5 +104,5 @@
     long totalPixels = 0;
     long totalStreakPixels = 0;
-    long unDiffedPixels = 0;
+    long nonDiffedPixels = 0;
 
     // accumulators for the various timers
@@ -154,5 +154,5 @@
                     // set non-diffed pixels and variance to NAN, mask to maskStreak (since the pixel
                     // is excised as part of the destreaking process)
-                    unDiffedPixels += exciseNonDiffedPixels(sfiles, sfiles->maskStreak);
+                    nonDiffedPixels += exciseNonDiffedPixels(sfiles, sfiles->maskStreak);
 
                     enw_t +=  psTimerClear("EXCISE_NON_DIFFED");
@@ -220,7 +220,7 @@
     psMetadataAddF32(sfiles->stats, PS_LIST_TAIL, "STREAK_FRACTION", PS_META_REPLACE, "", streakFraction);
 
-    psF64 unDiffedFraction = (double) unDiffedPixels / totalPixels;
-    psLogMsg("streaksremove", PS_LOG_INFO, "undiffed pixels:  %8ld %4.2f%%\n", unDiffedPixels, unDiffedFraction * 100);
-    psMetadataAddF32(sfiles->stats, PS_LIST_TAIL, "UNDIFFED_FRACTION", PS_META_REPLACE, "", unDiffedFraction);
+    psF64 nonDiffedFraction = (double) nonDiffedPixels / totalPixels;
+    psLogMsg("streaksremove", PS_LOG_INFO, "nondiffed pixels:  %8ld %4.2f%%\n", nonDiffedPixels, nonDiffedFraction * 100);
+    psMetadataAddF32(sfiles->stats, PS_LIST_TAIL, "NONDIFFED_FRACTION", PS_META_REPLACE, "", nonDiffedFraction);
 
     // check the weight and mask files for extra extensions that might be in files
