[cmake-commits] martink committed cmFileCommand.cxx 1.72 1.73

cmake-commits at cmake.org cmake-commits at cmake.org
Thu Mar 1 16:23:08 EST 2007


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv18550

Modified Files:
	cmFileCommand.cxx 
Log Message:
COMP: fix a compiel warning


Index: cmFileCommand.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmFileCommand.cxx,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -d -r1.72 -r1.73
--- cmFileCommand.cxx	1 Mar 2007 20:53:09 -0000	1.72
+++ cmFileCommand.cxx	1 Mar 2007 21:23:06 -0000	1.73
@@ -219,7 +219,7 @@
   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;



More information about the Cmake-commits mailing list