From f667ed41d893946e7848555ed6af8a02034f8e39 Mon Sep 17 00:00:00 2001 From: ponchio Date: Wed, 1 Dec 2004 16:03:21 +0000 Subject: [PATCH] fixed an assert --- apps/nexus/mfile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/nexus/mfile.cpp b/apps/nexus/mfile.cpp index c68921f2..a4513a72 100644 --- a/apps/nexus/mfile.cpp +++ b/apps/nexus/mfile.cpp @@ -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);