diff options
author | Brad King <brad.king@kitware.com> | 2001-02-26 23:16:05 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-02-26 23:16:05 (GMT) |
commit | 98590039d668d1d913e381ca89758666048ceab8 (patch) | |
tree | df82c126c21a0e8f5e74ea3afed2836fa142e2a1 /Source/cmWrapTclCommand.cxx | |
parent | b908149828f060186cb9c240e505b865ad31494f (diff) | |
download | CMake-98590039d668d1d913e381ca89758666048ceab8.zip CMake-98590039d668d1d913e381ca89758666048ceab8.tar.gz CMake-98590039d668d1d913e381ca89758666048ceab8.tar.bz2 |
int -> unsigned int
Diffstat (limited to 'Source/cmWrapTclCommand.cxx')
-rw-r--r-- | Source/cmWrapTclCommand.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmWrapTclCommand.cxx b/Source/cmWrapTclCommand.cxx index 60da542..c18870b 100644 --- a/Source/cmWrapTclCommand.cxx +++ b/Source/cmWrapTclCommand.cxx @@ -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) { |