aboutsummaryrefslogtreecommitdiff
path: root/src/server/worldserver/TCSoap
diff options
context:
space:
mode:
authorSpp <none@none>2010-08-23 14:10:24 +0200
committerSpp <none@none>2010-08-23 14:10:24 +0200
commit58e94dcb9d2d983c8ffc2df0bb86f3d765b08652 (patch)
tree15d7064e900faf241d117be5bd2567f99ed5287f /src/server/worldserver/TCSoap
parent16d95d3115b27536e7a1c99e795a5f90c238eb16 (diff)
Core: Fix more warnings
--HG-- branch : trunk
Diffstat (limited to 'src/server/worldserver/TCSoap')
-rw-r--r--src/server/worldserver/TCSoap/TCSoap.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/server/worldserver/TCSoap/TCSoap.cpp b/src/server/worldserver/TCSoap/TCSoap.cpp
index caa64becf0b..2a52e054acd 100644
--- a/src/server/worldserver/TCSoap/TCSoap.cpp
+++ b/src/server/worldserver/TCSoap/TCSoap.cpp
@@ -164,10 +164,10 @@ void SOAPCommand::commandFinished(void* soapconnection, bool success)
////////////////////////////////////////////////////////////////////////////////
struct Namespace namespaces[] =
-{ { "SOAP-ENV", "http://schemas.xmlsoap.org/soap/envelope/" }, // must be first
- { "SOAP-ENC", "http://schemas.xmlsoap.org/soap/encoding/" }, // must be second
- { "xsi", "http://www.w3.org/1999/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance" },
- { "xsd", "http://www.w3.org/1999/XMLSchema", "http://www.w3.org/*/XMLSchema" },
- { "ns1", "urn:TC" }, // "ns1" namespace prefix
- { NULL, NULL }
+{ { "SOAP-ENV", "http://schemas.xmlsoap.org/soap/envelope/", NULL, NULL }, // must be first
+ { "SOAP-ENC", "http://schemas.xmlsoap.org/soap/encoding/", NULL, NULL }, // must be second
+ { "xsi", "http://www.w3.org/1999/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL },
+ { "xsd", "http://www.w3.org/1999/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL },
+ { "ns1", "urn:TC", NULL, NULL }, // "ns1" namespace prefix
+ { NULL, NULL, NULL, NULL }
};