fixed an assert

This commit is contained in:
Federico Ponchio 2004-12-01 16:03:21 +00:00
parent 6d82d738a3
commit f667ed41d8
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ void MFile::Redim(int64 sz) {
//TODO test rhis!!!!
while(files.size() <= totfile) {
RedimLast(max_size);
assert(size == max_size * (files.size()));
assert(size == (int64)max_size * (int64)(files.size()));
AddFile();
}
assert(size <= sz);