Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 8252)
+++ trunk/MagicSoft/Mars/Changelog	(revision 8253)
@@ -18,4 +18,11 @@
 
                                                  -*-*- END OF LINE -*-*-
+
+ 2007/01/16 Thomas Bretz
+
+   * mfileio/MReadMarsFile.cc:
+     - fixed two "comparison between signed and unsigned integer" warnings
+
+
 
  2007/01/16 Daniela Dorner
Index: trunk/MagicSoft/Mars/mfileio/MReadMarsFile.cc
===================================================================
--- trunk/MagicSoft/Mars/mfileio/MReadMarsFile.cc	(revision 8252)
+++ trunk/MagicSoft/Mars/mfileio/MReadMarsFile.cc	(revision 8253)
@@ -257,5 +257,5 @@
     // Check if really one file conatains one RunHeader
     // (FIXME: Do the check more properly)
-    if (fRun->GetEntries() < fRun->GetNumFiles())
+    if ((Int_t)fRun->GetEntries() < fRun->GetNumFiles())
     {
         *fLog << err << "Error - Number of files exceeds number of RunHeaders... aborting." << endl;
@@ -263,5 +263,5 @@
     }
 
-    if (fRun->GetEntries() > fRun->GetNumFiles())
+    if ((Int_t)fRun->GetEntries() > fRun->GetNumFiles())
     {
         *fLog << err << "Error - Number of RunHeaders exceeds number of files... aborting." << endl;
