commit 4f833a04219c0b019bd95195b6e7cfae01304f4d
Author: David Sorber <dsorber@prometheus.fios-router.home>
Date:   Wed Feb 8 19:00:18 2017 -0500

    A tiny bit of cleanup from my previous commit...

diff --git a/software/photo_compress_archiver/PhotoCompressArchiver.cc b/software/photo_compress_archiver/PhotoCompressArchiver.cc
index 23b7fb7..4cf44aa 100644
--- a/software/photo_compress_archiver/PhotoCompressArchiver.cc
+++ b/software/photo_compress_archiver/PhotoCompressArchiver.cc
@@ -154,11 +154,6 @@ void PhotoCompressArchiver::fork_worker(
                       << std::endl;)
     }
 #endif
-
-#ifdef __linux__
-#error MAC OS is not supported dumbass!
-#endif 
-
         
     uint32_t argv_size = file_sublist->size() + 5;
     const char **exec_argv = new const char* [argv_size];
@@ -178,7 +173,8 @@ void PhotoCompressArchiver::fork_worker(
     exec_argv[argv_size - 1] = nullptr;
     
     
-    // --- temp idea horribleness
+    // Build a list of the output files names for use in output file monitoring
+    // below. Output file names have ".jpg" or ".jpeg" replaced with ".pjg"
     std::vector<std::string*> output_filenames;
     for (auto& filepath : *file_sublist)
     {
@@ -190,14 +186,6 @@ void PhotoCompressArchiver::fork_worker(
                       
         output_filenames.push_back(filename);
     }
-    //--------------------------
-    
-#if 0
-    for (auto output_filename : output_filenames)
-    {
-        OUT(std::cout << *output_filename << std::endl;)
-    }
-#endif
     
     // Create a pipe to hold stdout from child process
     int filedes[2];
@@ -326,8 +314,6 @@ void PhotoCompressArchiver::fork_worker(
     {
         delete output_filename;
     }
-    
-    //~ OUT(std::cout << "T[" << tid << "] terminating" << std::endl;)
 }
 
 double PhotoCompressArchiver::get_global_percent_done()
