aboutsummaryrefslogtreecommitdiff
path: root/src/pugixml.cpp
diff options
context:
space:
mode:
authorvineeth-11316 <vineeth.ks@zohocorp.com>2023-08-20 10:21:26 +0530
committervineeth-11316 <vineeth.ks@zohocorp.com>2023-08-20 10:21:26 +0530
commita28252205adf5edcac5e2076a4a49f4eece60994 (patch)
tree3ef30dfddd8e52427ec006feae88dce15b635034 /src/pugixml.cpp
parent068aa22b1a82da8dc50dbe639cb3e576f81ff520 (diff)
downloadpugixml-a28252205adf5edcac5e2076a4a49f4eece60994.zip
pugixml-a28252205adf5edcac5e2076a4a49f4eece60994.tar.gz
pugixml-a28252205adf5edcac5e2076a4a49f4eece60994.tar.bz2
Final Commit
Diffstat (limited to 'src/pugixml.cpp')
-rw-r--r--src/pugixml.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pugixml.cpp b/src/pugixml.cpp
index 40cd5a1..d1190e1 100644
--- a/src/pugixml.cpp
+++ b/src/pugixml.cpp
@@ -276,11 +276,11 @@ PUGI_IMPL_NS_BEGIN
{
assert(dst && src);
-#ifdef PUGIXML_WCHAR_MODE
+ #ifdef PUGIXML_WCHAR_MODE
wcscat(dst, src);
-#else
+ #else
strcat(dst, src);
-#endif
+ #endif
}
PUGI_IMPL_NS_END