int -> unsigned int

This commit is contained in:
Brad King 2001-02-26 18:16:05 -05:00
parent b908149828
commit 98590039d6
1 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ int anindex = 0;
bool cmWrapTclCommand::CreateInitFile(std::string& res)
{
int i;
unsigned int i;
/* we have to make sure that the name is the correct case */
std::string kitName = m_Makefile->GetLibraryName();
@ -138,7 +138,7 @@ bool cmWrapTclCommand::CreateInitFile(std::string& res)
bool cmWrapTclCommand::WriteInit(const char *kitName, std::string& outFileName,
std::vector<std::string>& classes)
{
int i;
unsigned int i;
FILE *fout = fopen(outFileName.c_str(),"w");
if (!fout)
{