summaryrefslogtreecommitdiff
path: root/ACE/tests/Wild_Match_Test.cpp
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/tests/Wild_Match_Test.cpp
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/tests/Wild_Match_Test.cpp')
-rw-r--r--ACE/tests/Wild_Match_Test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/tests/Wild_Match_Test.cpp b/ACE/tests/Wild_Match_Test.cpp
index 387f6324b8f..7d8f78b75d1 100644
--- a/ACE/tests/Wild_Match_Test.cpp
+++ b/ACE/tests/Wild_Match_Test.cpp
@@ -7,7 +7,7 @@
bool match (const char *str, const char *pat, bool cs = true, bool cc = false)
{
bool const result = ACE::wild_match (str, pat, cs, cc);
- ACE_DEBUG ((LM_DEBUG, "string {%C} %C pattern {%s}\t%C\t%C\n", str,
+ ACE_DEBUG ((LM_DEBUG, "string {%C} %C pattern {%C}\t%C\t%C\n", str,
(result ? "matches" : "does not match"), pat,
(cs ? "" : "case-insensitive"), (cc ? "char classes" : "")));
return result;