Ignore:
Timestamp:
02/02/09 17:34:21 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mreport/MReportCC.cc

    r9141 r9289  
    149149            }
    150150
    151             const TString str2 = str(0, pos2);
     151            TString str2 = str(0, pos2);
    152152
    153153            str.Remove(0, pos2);
     154
     155            // Remove a leading minus. FIXME: What is its meaning?
     156            if (str2[0]=='-')
     157                str2.Remove(0, 1);
    154158
    155159            if (!str2.IsDigit())
    156160            {
    157                 *fLog << warn << "WARNING - Wrong type of second argument." << endl;
     161                *fLog << warn << "WARNING - Wrong type of second argument: " << str2 << endl;
    158162                return kFALSE;
    159163            }
Note: See TracChangeset for help on using the changeset viewer.