COMP: fix a compiel warning

This commit is contained in:
Ken Martin 2007-03-01 16:23:06 -05:00
parent f8c982cf78
commit d223fc64ad
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ bool cmFileCommand::HandleReadCommand(std::vector<std::string> const& args)
long sizeLimit = -1;
if (args.size() >= 5 && args[3] == "LIMIT")
{
sizeLimit = atof(args[4].c_str());
sizeLimit = atoi(args[4].c_str());
}
std::string output;