Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 8275)
+++ trunk/MagicSoft/Mars/Changelog	(revision 8276)
@@ -37,4 +37,7 @@
      - removed badpixel calculation and treatment until a better
        solution was found.
+
+   * mfbase/MFDataPhrase.cc:
+     - fixed a "comparison is always true" warning
 
 
Index: trunk/MagicSoft/Mars/mfbase/MFDataPhrase.cc
===================================================================
--- trunk/MagicSoft/Mars/mfbase/MFDataPhrase.cc	(revision 8275)
+++ trunk/MagicSoft/Mars/mfbase/MFDataPhrase.cc	(revision 8276)
@@ -273,5 +273,5 @@
 Int_t MFDataPhrase::ReadEnv(const TEnv &env, TString prefix, Bool_t print)
 {
-    Bool_t rc = MFilter::ReadEnv(env, prefix, print);
+    Int_t rc = MFilter::ReadEnv(env, prefix, print);
     if (rc==kERROR)
         return kERROR;
Index: trunk/MagicSoft/Mars/mmain/MEventDisplay.cc
===================================================================
--- trunk/MagicSoft/Mars/mmain/MEventDisplay.cc	(revision 8275)
+++ trunk/MagicSoft/Mars/mmain/MEventDisplay.cc	(revision 8276)
@@ -1,4 +1,4 @@
 /* ======================================================================== *\
-! $Name: not supported by cvs2svn $:$Id: MEventDisplay.cc,v 1.56 2006-11-02 17:44:09 tbretz Exp $
+! $Name: not supported by cvs2svn $:$Id: MEventDisplay.cc,v 1.57 2007-01-29 12:51:17 tbretz Exp $
 ! --------------------------------------------------------------------------
 !
@@ -308,4 +308,5 @@
 
         MPedestalSubtract *pedsub = new MPedestalSubtract;
+        pedsub->SetNamePedestalCam();
         //MCalibrationRelTimeCalc *tcalc = new MCalibrationRelTimeCalc;
 
@@ -328,6 +329,6 @@
         tlist->AddToList(calib);    // MExtractedSignalCam --> MSignalCam
 
-        tlist->AddToList(bcalc);    // Produce MBadPixelsCam
-        tlist->AddToList(btreat);   // Treat MBadPixelsCam
+        //tlist->AddToList(bcalc);    // Produce MBadPixelsCam
+        //tlist->AddToList(btreat);   // Treat MBadPixelsCam
     }
 
