Index: trunk/ppImage/src/ppImage.c
===================================================================
--- trunk/ppImage/src/ppImage.c	(revision 5860)
+++ trunk/ppImage/src/ppImage.c	(revision 5976)
@@ -1,5 +1,6 @@
-# include "ppImage.h"
+#include "ppImage.h"
 
-int main (int argc, char **argv) {
+int main(int argc, char **argv)
+{
 
     ppData data;
@@ -7,26 +8,26 @@
     ppOptions options;
 
-    psTimerStart("phase2");
+    psTimerStart(TIMERNAME);
 
     // Parse the configuration and arguments
-    ppImageConfig (&config, argc, argv);
+    ppImageConfig(&config, argc, argv);
 
     // Open the input image, output image, output mask
     // Get camera configuration from header if not already defined
     // Construct camera in preparation for reading
-    ppImageParseCamera (&data, &config);
+    ppImageParseCamera(&data, &config);
 
     // Set various tasks (define optional operations)
-    ppImageOptions (&data, &options, &config);
+    ppImageOptions(&data, &options, &config);
 
     // open detrend images, load headers, optionally load pixels
-    ppImageParseDetrend (&data, &options, &config);
+    ppImageParseDetrend(&data, &options, &config);
 
     // Image Arithmetic Loop
-    ppImageLoop (&data, &options, &config);
+    ppImageLoop(&data, &options, &config);
 
     // output options
-    // ppImageOutput (&data, &options, &config);
+    // ppImageOutput(&data, &options, &config);
 
-    exit (0);
+    exit(EXIT_SUCCESS);
 }
