Fixed copy and paste error (Coverity-ID: 1226262 Copy-paste error).

This commit is contained in:
orbitcowboy 2014-07-12 12:48:05 +02:00
parent 5bdd197b01
commit 6e5a05104b
1 changed files with 1 additions and 1 deletions

View File

@ -3840,7 +3840,7 @@ void Tokenizer::dump(std::ostream &out) const
out << " astParent=\"" << tok->astParent() << '\"';
if (tok->astOperand1())
out << " astOperand1=\"" << tok->astOperand1() << '\"';
if (tok->astOperand1())
if (tok->astOperand2())
out << " astOperand2=\"" << tok->astOperand2() << '\"';
out << "/>" << std::endl;
}