From eb1764b34ff307c1409888d442d982a76ea86de8 Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Sat, 19 Mar 2005 09:05:17 -0500 Subject: [PATCH] COMP: fix warning --- Source/cmGlobalGenerator.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 89848315f4..1382e88465 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -503,7 +503,7 @@ void cmGlobalGenerator::Configure() // update the cache entry for the number of local generators, this is used // for progress char num[100]; - sprintf(num,"%d",m_LocalGenerators.size()); + sprintf(num,"%d",static_cast(m_LocalGenerators.size())); this->GetCMakeInstance()->AddCacheEntry ("CMAKE_NUMBER_OF_LOCAL_GENERATORS", num, "number of local generators",