Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 5937)
+++ trunk/MagicSoft/Mars/Changelog	(revision 5938)
@@ -50,8 +50,4 @@
    * mastro/MObservatory.[h,cc]:
      - added ReadEnv member function
-
-   * mjobs/MJPedestal.h:
-     - fixed a bug in the header. kNoStorage was 0 which cannot work in this
-       context. Set to BIT(0)
 
 
Index: trunk/MagicSoft/Mars/mbase/MTaskEnv.h
===================================================================
--- trunk/MagicSoft/Mars/mbase/MTaskEnv.h	(revision 5937)
+++ trunk/MagicSoft/Mars/mbase/MTaskEnv.h	(revision 5938)
@@ -32,5 +32,5 @@
     void SetOwner(Bool_t b=kTRUE) { b ? SetBit(kIsOwner) : ResetBit(kIsOwner); }
 
-    void SetDefault(MTask *task) { fTask = task; if (fTask) fTask->SetName(fName); else SetBit(kIsDummy); }
+    void SetDefault(MTask *task=0) { fTask = task; if (fTask) fTask->SetName(fName); else SetBit(kIsDummy); }
     void SetDefault(const char *def);
 
Index: trunk/MagicSoft/Mars/mjobs/MJPedestal.h
===================================================================
--- trunk/MagicSoft/Mars/mjobs/MJPedestal.h	(revision 5937)
+++ trunk/MagicSoft/Mars/mjobs/MJPedestal.h	(revision 5938)
@@ -51,5 +51,5 @@
     Display_t fDisplayType;                              // Chosen Display type
 
-    enum Storage_t { kNoStorage = BIT(0) };              // Possible flags for the storage of results
+    enum Storage_t { kNoStorage };                       // Possible flags for the storage of results
     Byte_t fStorage;                                     // Bit-field for chosen storage type
 
