summaryrefslogtreecommitdiff
path: root/ACE/ace/Stack_Trace.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2013-11-12 09:59:19 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2013-11-12 09:59:19 +0000
commit366c7cd60bf36b542736b45803b7e2f7b96b6d59 (patch)
tree3c3505741c925413388cd434335d6c9b941253a1 /ACE/ace/Stack_Trace.h
parentaf54477eecf347771464faa234ee9fc111319145 (diff)
downloadATCD-366c7cd60bf36b542736b45803b7e2f7b96b6d59.tar.gz
Tue Nov 12 09:56:49 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Log_Msg.cpp: Fixed logging of stack trace on Windows with wchar enabled * ace/Stack_Trace.h: Fixed incorrect log msg format mask * docs/bczar/bczar.html: Added package * tests/Proactor_Scatter_Gather_Test.cpp: * tests/Proactor_Test.cpp: * tests/Proactor_Test_IPV6.cpp: * tests/Proactor_Timer_Test.cpp: * tests/Proactor_UDP_Test.cpp: Added missing newline * tests/UUID_Test.cpp: * tests/Wild_Match_Test.cpp: Fixed logging in case of unicode
Diffstat (limited to 'ACE/ace/Stack_Trace.h')
-rw-r--r--ACE/ace/Stack_Trace.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/ace/Stack_Trace.h b/ACE/ace/Stack_Trace.h
index 96d24c183c4..e99526ac151 100644
--- a/ACE/ace/Stack_Trace.h
+++ b/ACE/ace/Stack_Trace.h
@@ -43,7 +43,7 @@
* ACELIB_DEBUG((LM_DEBUG, "%?"));
*
* ACE_Stack_Trace st;
- * ACELIB_DEBUG ((LM_DEBUG, "%s", st.c_str() ));
+ * ACELIB_DEBUG ((LM_DEBUG, "%C", st.c_str() ));
* \endcode
*
* These usage examples were shown in $ACE_ROOT/tests/Stack_Trace_Test.cpp.