From 2564097e8c5b394b76d382e0a817555829edbadf Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Fri, 1 Feb 2008 11:40:55 -0500 Subject: [PATCH] ENH: fix more warnings --- Source/kwsys/SystemInformation.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/kwsys/SystemInformation.cxx b/Source/kwsys/SystemInformation.cxx index fa283160a..ec962e80e 100644 --- a/Source/kwsys/SystemInformation.cxx +++ b/Source/kwsys/SystemInformation.cxx @@ -2852,7 +2852,7 @@ kwsys_stl::string SystemInformationImplementation::ParseValueFromKStat(const cha kwsys_stl::string buffer = this->RunProcess(args); kwsys_stl::string value = ""; - for(unsigned int i=buffer.size()-1;i>0;i--) + for(size_t i=buffer.size()-1;i>0;i--) { if(buffer[i] == ' ' || buffer[i] == '\t') {