summaryrefslogtreecommitdiff
path: root/ACEXML/tests/NamespaceSupport_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACEXML/tests/NamespaceSupport_Test.cpp')
-rw-r--r--ACEXML/tests/NamespaceSupport_Test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACEXML/tests/NamespaceSupport_Test.cpp b/ACEXML/tests/NamespaceSupport_Test.cpp
index 29008ab218a..9f3ed5db203 100644
--- a/ACEXML/tests/NamespaceSupport_Test.cpp
+++ b/ACEXML/tests/NamespaceSupport_Test.cpp
@@ -27,7 +27,7 @@ int main (int, ACE_TCHAR *[])
ACE_TEXT ("Namespace URI: %s\nLocal name: %s\nRaw name: %s\n"),
uri, lName, n1));
- ACEXML_Char *n2 = ACE_TEXT ("dc:title");
+ const ACEXML_Char *n2 = ACE_TEXT ("dc:title");
if (xmlns.processName(n2, uri, lName, 0) != 0)
ACE_DEBUG ((LM_ERROR,
ACE_TEXT ("Fail to resolve namespace name %S\n"),
@@ -37,7 +37,7 @@ int main (int, ACE_TCHAR *[])
ACE_TEXT ("Namespace URI: %s\nLocal name: %s\nRaw name: %s\n"),
uri, lName, n2));
- ACEXML_Char *n3 = ACE_TEXT ("xml:title");
+ const ACEXML_Char *n3 = ACE_TEXT ("xml:title");
if (xmlns.processName(n3, uri, lName, 0) != 0)
ACE_DEBUG ((LM_ERROR,
ACE_TEXT ("Fail to resolve namespace name %S\n"),