summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZach Mullen <zach.mullen@kitware.com>2009-09-08 13:12:44 (GMT)
committerZach Mullen <zach.mullen@kitware.com>2009-09-08 13:12:44 (GMT)
commit384f4d1f3f14e57a56a43b4f99233c9210041846 (patch)
treee97ed5c11aaaf3564e8079522f3840444530f23b
parent5252ef4862122297feab1bbd9c48ed8f87206e3f (diff)
downloadCMake-384f4d1f3f14e57a56a43b4f99233c9210041846.zip
CMake-384f4d1f3f14e57a56a43b4f99233c9210041846.tar.gz
CMake-384f4d1f3f14e57a56a43b4f99233c9210041846.tar.bz2
Fixed warning
-rw-r--r--Source/CTest/cmCTestRunTest.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestRunTest.h b/Source/CTest/cmCTestRunTest.h
index 2895dbb..d104d7d 100644
--- a/Source/CTest/cmCTestRunTest.h
+++ b/Source/CTest/cmCTestRunTest.h
@@ -91,7 +91,7 @@ private:
std::vector<std::string> Arguments;
};
-inline int getNumWidth(int n)
+inline int getNumWidth(size_t n)
{
int numWidth = 1;
if(n >= 10)