diff options
author | Brad King <brad.king@kitware.com> | 2003-11-04 14:00:18 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2003-11-04 14:00:18 (GMT) |
commit | 37bbb27bfaba02f7dfc93e5cf7694366206ca9c5 (patch) | |
tree | 5a54e431aa5832d32bcf6e5c57657b48aa1b5ef1 /Source/kwsys/RegularExpression.cxx | |
parent | 8f8cc16ea3b96faad38c76a9f062bcd89d0b5877 (diff) | |
download | CMake-37bbb27bfaba02f7dfc93e5cf7694366206ca9c5.zip CMake-37bbb27bfaba02f7dfc93e5cf7694366206ca9c5.tar.gz CMake-37bbb27bfaba02f7dfc93e5cf7694366206ca9c5.tar.bz2 |
ERR: Removed extra variable assignments.
Diffstat (limited to 'Source/kwsys/RegularExpression.cxx')
-rw-r--r-- | Source/kwsys/RegularExpression.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/RegularExpression.cxx b/Source/kwsys/RegularExpression.cxx index 451237c..22e8e55 100644 --- a/Source/kwsys/RegularExpression.cxx +++ b/Source/kwsys/RegularExpression.cxx @@ -769,7 +769,7 @@ static void reginsert (char op, char* opnd) { place = opnd; // Op node, where operand used to be. *place++ = op; *place++ = '\0'; - *place++ = '\0'; + *place = '\0'; } |