Index: trunk/ppBackground/src/ppBackgroundStack.c
===================================================================
--- trunk/ppBackground/src/ppBackgroundStack.c	(revision 36579)
+++ trunk/ppBackground/src/ppBackgroundStack.c	(revision 36580)
@@ -18,18 +18,18 @@
     ppBackgroundErrorRegister();
 
-    ppBackgroundData *data = ppBackgroundDataInit(&argc, argv);
+    ppBackgroundStackData *data = ppBackgroundStackDataInit(&argc, argv);
     if (!data) {
         goto DIE;
     }
 
-    if (!ppBackgroundArguments(data, argc, argv)) {
+    if (!ppBackgroundStackArguments(data, argc, argv)) {
         goto DIE;
     }
 
-    if (!ppBackgroundCamera(data)) {
+    if (!ppBackgroundStackCamera(data)) {
         goto DIE;
     }
 
-    if (!ppBackgroundLoop(data)) {
+    if (!ppBackgroundStackLoop(data)) {
         goto DIE;
     }
@@ -39,18 +39,18 @@
     psExit exitValue = ppBackgroundExitCode(PS_EXIT_SUCCESS); // Exit code
 
-    if (data && data->stats && data->statsFile) {
-        psString stats = psMetadataConfigFormat(data->stats); // Statistics to output
-        if (!stats || strlen(stats) == 0) {
-            psError(PPBACKGROUND_ERR_IO, false, "Unable to format statistics file");
-        } else if (fprintf(data->statsFile, "%s", stats) != strlen(stats)) {
-            psError(PPBACKGROUND_ERR_IO, true, "Unable to write statistics file");
-        }
-        psFree(stats);
-        if (fclose(data->statsFile) == EOF) {
-            psError(PPBACKGROUND_ERR_IO, true, "Unable to close statistics file");
-        }
-        data->statsFile = NULL;
-        exitValue = ppBackgroundExitCode(exitValue);
-    }
+/*     if (data && data->stats && data->statsFile) { */
+/*         psString stats = psMetadataConfigFormat(data->stats); // Statistics to output */
+/*         if (!stats || strlen(stats) == 0) { */
+/*             psError(PPBACKGROUND_ERR_IO, false, "Unable to format statistics file"); */
+/*         } else if (fprintf(data->statsFile, "%s", stats) != strlen(stats)) { */
+/*             psError(PPBACKGROUND_ERR_IO, true, "Unable to write statistics file"); */
+/*         } */
+/*         psFree(stats); */
+/*         if (fclose(data->statsFile) == EOF) { */
+/*             psError(PPBACKGROUND_ERR_IO, true, "Unable to close statistics file"); */
+/*         } */
+/*         data->statsFile = NULL; */
+/*         exitValue = ppBackgroundExitCode(exitValue); */
+/*     } */
 
     if (data) {
