- cleanup some compiler warnings

This commit is contained in:
Mark Vejvoda 2011-03-19 17:19:37 +00:00
parent e2c4ae7c11
commit 59fc55ffee
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ void FileCRCPreCacheThread::execute() {
findDirs(techDataPaths, techPaths);
if(techPaths.empty() == false) {
int techsPerWorker = (techPaths.size() / MAX_FileCRCPreCacheThread_WORKER_THREADS);
unsigned int techsPerWorker = (techPaths.size() / MAX_FileCRCPreCacheThread_WORKER_THREADS);
if(techPaths.size() % MAX_FileCRCPreCacheThread_WORKER_THREADS != 0) {
techsPerWorker++;
}