summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r--Source/cmSystemTools.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index 81c4fa3..c82f9df 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -1336,8 +1336,9 @@ bool cmSystemTools::RunCommand(const char* command,
bool verbose,
int timeout)
{
- int foo;
- return cmSystemTools::RunCommand(command, output, foo, dir, verbose, timeout);
+ int dummy;
+ return cmSystemTools::RunCommand(command, output, dummy,
+ dir, verbose, timeout);
}
#if defined(WIN32) && !defined(__CYGWIN__)
@@ -2476,4 +2477,3 @@ void cmSystemTools::SplitProgramFromArgs(const char* path,
program = "";
args = "";
}
-