summaryrefslogtreecommitdiff
path: root/Source/cmFindProgramCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-02-23 10:40:13 -0500
committerBrad King <brad.king@kitware.com>2001-02-23 10:40:13 -0500
commitd31ce244136205bc006967090ddd4d6fdde5b3cb (patch)
tree7c3c96c3a906ed4ba33d7ecc0ab616db8a0e0373 /Source/cmFindProgramCommand.cxx
parent8f0ac1e9bd4aaf012c10e0044465c580b6f56144 (diff)
downloadcmake-d31ce244136205bc006967090ddd4d6fdde5b3cb.tar.gz
ERR: Fixed warnings (int->unsigned int and a few others).
Diffstat (limited to 'Source/cmFindProgramCommand.cxx')
-rw-r--r--Source/cmFindProgramCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFindProgramCommand.cxx b/Source/cmFindProgramCommand.cxx
index 81678b3b37..66d3f173d7 100644
--- a/Source/cmFindProgramCommand.cxx
+++ b/Source/cmFindProgramCommand.cxx
@@ -45,7 +45,7 @@ bool cmFindProgramCommand::Invoke(std::vector<std::string>& args)
cmSystemTools::GetPath(path);
for(; i != args.end(); ++i)
{
- for(int k=0; k < path.size(); k++)
+ for(unsigned int k=0; k < path.size(); k++)
{
std::string tryPath = path[k];
tryPath += "/";