summaryrefslogtreecommitdiff
path: root/Source/cmExecProgramCommand.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-04-08 13:36:18 -0400
committerBill Hoffman <bill.hoffman@kitware.com>2002-04-08 13:36:18 -0400
commit65e3edea04fdd058719659e99a7a3da3dfb80b25 (patch)
treedb1d3a1c33d40bb43c5333399163a76df7aee689 /Source/cmExecProgramCommand.cxx
parent7883b6c7dc38c73638947575c75aeb06acba9c90 (diff)
downloadcmake-65e3edea04fdd058719659e99a7a3da3dfb80b25.tar.gz
ENH: use separate vars for creating c++ and c shared libraries and add a test for c libraries
Diffstat (limited to 'Source/cmExecProgramCommand.cxx')
-rw-r--r--Source/cmExecProgramCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmExecProgramCommand.cxx b/Source/cmExecProgramCommand.cxx
index 7e1ad766b3..685e2fc50f 100644
--- a/Source/cmExecProgramCommand.cxx
+++ b/Source/cmExecProgramCommand.cxx
@@ -28,7 +28,7 @@ bool cmExecProgramCommand::InitialPass(std::vector<std::string> const& args)
std::string arguments;
bool doingargs = false;
int count = 0;
- for(int i=0; i < args.size(); ++i)
+ for(size_t i=0; i < args.size(); ++i)
{
if(doingargs)
{