summaryrefslogtreecommitdiff
path: root/TAO/utils
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2016-09-04 19:20:58 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2016-09-04 19:20:58 +0200
commitf3387d02b2617c272300f22f2ae7a5864065997f (patch)
tree5c416496ff322e419c181bb01727d851e4321bfd /TAO/utils
parent03ef5706e8b3dcdd8de7636f39aaca7543b23283 (diff)
downloadATCD-f3387d02b2617c272300f22f2ae7a5864065997f.tar.gz
Fixed warning
* TAO/utils/logWalker/Invocation.cpp:
Diffstat (limited to 'TAO/utils')
-rw-r--r--TAO/utils/logWalker/Invocation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/utils/logWalker/Invocation.cpp b/TAO/utils/logWalker/Invocation.cpp
index f517c936c2e..e7d4ac18dd4 100644
--- a/TAO/utils/logWalker/Invocation.cpp
+++ b/TAO/utils/logWalker/Invocation.cpp
@@ -457,7 +457,7 @@ Invocation::dump_detail (ostream &strm,
for (NotifyIncidents::ITERATOR i = this->notify_incidents_.begin();
!(i.done()); i.advance())
{
- ACE_CString *note;
+ ACE_CString *note = 0;
i.next(note);
strm << " " << *note << endl;
}