diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-02-01 16:40:55 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-02-01 16:40:55 (GMT) |
commit | 2564097e8c5b394b76d382e0a817555829edbadf (patch) | |
tree | 0f6fd7f789cf906690f89c291ed2c75fd95a9f0c /Source/kwsys/SystemInformation.cxx | |
parent | 5343910cba232b5acea4a0ec34432d55f146c3d2 (diff) | |
download | CMake-2564097e8c5b394b76d382e0a817555829edbadf.zip CMake-2564097e8c5b394b76d382e0a817555829edbadf.tar.gz CMake-2564097e8c5b394b76d382e0a817555829edbadf.tar.bz2 |
ENH: fix more warnings
Diffstat (limited to 'Source/kwsys/SystemInformation.cxx')
-rw-r--r-- | Source/kwsys/SystemInformation.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/SystemInformation.cxx b/Source/kwsys/SystemInformation.cxx index fa28316..ec962e8 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') { |