- Timestamp:
- 08/19/10 11:52:14 (14 years ago)
- Location:
- trunk/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/Changelog
r9878 r9881 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 2010/08/19 Thomas Bretz 22 23 * mjobs/MSequence.cc: 24 - fixed treatment of file number 0 in InflateFileName and 25 PrintRuns 26 27 20 28 21 29 2010/08/17 Thomas Bretz -
trunk/Mars/mjobs/MSequence.cc
r9607 r9881 498 498 { 499 499 n += MString::Format("%08d", -run); 500 if (file> 0)500 if (file>=0) 501 501 n += MString::Format(".%03d", file); 502 502 } … … 1300 1300 { 1301 1301 out << " " << r[pos]; 1302 if (f[pos]> 0)1302 if (f[pos]>=0) 1303 1303 out << "." << f[pos]; 1304 1304 } … … 1314 1314 { 1315 1315 out << " " << r[pos] << "."; 1316 if (f[pos] !=0)1316 if (f[pos]>=0) 1317 1317 out << f[pos]; 1318 1318 out << ":" << f[pos+n-1];
Note:
See TracChangeset
for help on using the changeset viewer.