ERR: Fixed signed/unsigned warning.

This commit is contained in:
Brad King 2002-11-20 09:06:38 -05:00
parent f87d7039e2
commit 6435f608b9
1 changed files with 1 additions and 1 deletions

View File

@ -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")
{