From 59fc55ffee01317d42820947e6d1a6a4d0007d56 Mon Sep 17 00:00:00 2001 From: Mark Vejvoda Date: Sat, 19 Mar 2011 17:19:37 +0000 Subject: [PATCH] - cleanup some compiler warnings --- source/shared_lib/sources/platform/common/simple_threads.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/shared_lib/sources/platform/common/simple_threads.cpp b/source/shared_lib/sources/platform/common/simple_threads.cpp index b224ad0a..50656a19 100644 --- a/source/shared_lib/sources/platform/common/simple_threads.cpp +++ b/source/shared_lib/sources/platform/common/simple_threads.cpp @@ -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++; }