diff options
author | David Cole <david.cole@kitware.com> | 2009-09-30 15:41:34 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2009-09-30 15:41:34 (GMT) |
commit | a9dcc7fd47048a25f79f04a0d0a57a81aede617b (patch) | |
tree | 367c4e907bdab9961e981e44a40de016fa7a574c /Source/cmStringCommand.cxx | |
parent | 67530409a91156b06b3f8076bbd2e96969319fd4 (diff) | |
download | CMake-a9dcc7fd47048a25f79f04a0d0a57a81aede617b.zip CMake-a9dcc7fd47048a25f79f04a0d0a57a81aede617b.tar.gz CMake-a9dcc7fd47048a25f79f04a0d0a57a81aede617b.tar.bz2 |
Fix warnings in CMake source code. Suppress warnings in Lexer and Parser files that are 'too hard' to fix.
Diffstat (limited to 'Source/cmStringCommand.cxx')
-rw-r--r-- | Source/cmStringCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmStringCommand.cxx b/Source/cmStringCommand.cxx index 88d0b23..134f9ea 100644 --- a/Source/cmStringCommand.cxx +++ b/Source/cmStringCommand.cxx @@ -126,7 +126,7 @@ bool cmStringCommand::HandleAsciiCommand(std::vector<std::string> const& args) else { std::string error = "Character with code "; - error += ch; + error += args[cc]; error += " does not exist."; this->SetError(error.c_str()); return false; |