ERR: int -> unsigned int.

This commit is contained in:
Brad King 2001-05-11 11:45:04 -04:00
parent f81ae29834
commit 6edfd1104c
1 changed files with 1 additions and 3 deletions

View File

@ -54,13 +54,11 @@ bool cmFindLibraryCommand::Invoke(std::vector<std::string>& args)
std::string helpString = "Where can the ";
if(args[1] == "NAMES")
{
int i = 2;
while(args[i] != "PATHS" && i < args.size())
for(unsigned int i=2; (args[i] != "PATHS" && i < args.size()); ++i)
{
helpString = "( ";
helpString += args[i];
helpString += " ";
i++;
}
}
else