diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-11-20 23:18:24 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-11-20 23:18:24 (GMT) |
commit | b123c07ecfcad7eef40591009e1642fa00ec50ee (patch) | |
tree | e9397c9fbf220717be48261ad82b23c491d40b42 /Source/cmSystemTools.cxx | |
parent | 7ef61736648d213bdc147866da6e2d4cdaa9cf20 (diff) | |
download | CMake-b123c07ecfcad7eef40591009e1642fa00ec50ee.zip CMake-b123c07ecfcad7eef40591009e1642fa00ec50ee.tar.gz CMake-b123c07ecfcad7eef40591009e1642fa00ec50ee.tar.bz2 |
rename foo variables to better names
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r-- | Source/cmSystemTools.cxx | 6 |
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 = ""; } - |