ERR: int -> unsigned int.

This commit is contained in:
Brad King 2001-05-11 11:45:04 -04:00
parent f81ae29834
commit 6edfd1104c

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