summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2011-06-24 00:04:10 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2011-06-24 14:44:09 +0200
commit942589649d3c93fd22abaa251a90747edea0a3f4 (patch)
treef9216332660c2a3fbc8c4478658e332cefc1abbb
parentc7dfe8b14c78f0d9f4a7ea077649596aa82d7647 (diff)
downloadmxs-utils-942589649d3c93fd22abaa251a90747edea0a3f4.tar.gz
mxs-utils-942589649d3c93fd22abaa251a90747edea0a3f4.tar.xz
initialize member variable from argument
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--elftosb2/ElftosbAST.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/elftosb2/ElftosbAST.h b/elftosb2/ElftosbAST.h
index 81cc75a..e460e22 100644
--- a/elftosb2/ElftosbAST.h
+++ b/elftosb2/ElftosbAST.h
@@ -924,7 +924,7 @@ public:
}
LoadStatementASTNode(ASTNode * data, ASTNode * target)
- : StatementASTNode(), m_data(data), m_target(), m_isDCDLoad(false)
+ : StatementASTNode(), m_data(data), m_target(target), m_isDCDLoad(false)
{
}