Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 7988)
+++ trunk/MagicSoft/Mars/Changelog	(revision 7989)
@@ -62,4 +62,7 @@
      - updated the confusing error message printed to the log-stream
        in case of a failure of FillSrcPosCam
+
+   * callisto.cc:
+     - fixed small bug in PrintFiles
 
 
Index: trunk/MagicSoft/Mars/callisto.cc
===================================================================
--- trunk/MagicSoft/Mars/callisto.cc	(revision 7988)
+++ trunk/MagicSoft/Mars/callisto.cc	(revision 7989)
@@ -119,7 +119,7 @@
 }
 
-static void PrintFiles(const MSequence &seq, const TString &kInpathD, Bool_t raw, Bool_t all)
+static void PrintFiles(const MSequence &seq, const TString &kInpathD, Bool_t raw, Bool_t showall)
 {
-    const char *prep = all ? "Found" : "Scheduled";
+    const char *prep = showall ? "Found" : "Scheduled";
 
     MDirIter Next1, Next2, Next3;
@@ -130,11 +130,11 @@
     gLog << all;
     gLog.Separator(Form("%s Pedestal Files", prep));
-    Next1.Print(all?"all":"");
+    Next1.Print(showall?"all":"");
     gLog << endl;
     gLog.Separator(Form("%s Calibration Files", prep));
-    Next2.Print(all?"all":"");
+    Next2.Print(showall?"all":"");
     gLog << endl;
     gLog.Separator(Form("%s Data Files", prep));
-    Next3.Print(all?"all":"");
+    Next3.Print(showall?"all":"");
     gLog << endl;
 }
