summaryrefslogtreecommitdiff
path: root/Source/cmGetFilenameComponentCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2002-11-20 09:06:38 -0500
committerBrad King <brad.king@kitware.com>2002-11-20 09:06:38 -0500
commit6435f608b975ce24a5f424c55d208b2e460c2c3b (patch)
treea8e77feab43d323dfce1a56305518f541f17de69 /Source/cmGetFilenameComponentCommand.cxx
parentf87d7039e24635b92e3793b8f19df390e084be73 (diff)
downloadcmake-6435f608b975ce24a5f424c55d208b2e460c2c3b.tar.gz
ERR: Fixed signed/unsigned warning.
Diffstat (limited to 'Source/cmGetFilenameComponentCommand.cxx')
-rw-r--r--Source/cmGetFilenameComponentCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGetFilenameComponentCommand.cxx b/Source/cmGetFilenameComponentCommand.cxx
index f27762778f..c030d18590 100644
--- a/Source/cmGetFilenameComponentCommand.cxx
+++ b/Source/cmGetFilenameComponentCommand.cxx
@@ -51,7 +51,7 @@ bool cmGetFilenameComponentCommand::InitialPass(std::vector<std::string> const&
}
else if (args[2] == "PROGRAM")
{
- for(int i=2; i < args.size(); ++i)
+ for(unsigned int i=2; i < args.size(); ++i)
{
if(args[i] == "PROGRAM_ARGS")
{