summaryrefslogtreecommitdiff
path: root/src/pugixml.cpp
diff options
context:
space:
mode:
authorarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2009-09-17 18:14:05 +0000
committerarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2009-09-17 18:14:05 +0000
commitfcce7152ac00a3ed227eafd135e570584392cd08 (patch)
tree58fcf043da31326298d878a28133f248f6ed4e88 /src/pugixml.cpp
parent01d8a2405191b931cc44e18ec5379e9846b45849 (diff)
Fixed compilation warnings on BCC
git-svn-id: http://pugixml.googlecode.com/svn/trunk@128 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'src/pugixml.cpp')
-rw-r--r--src/pugixml.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pugixml.cpp b/src/pugixml.cpp
index c1797c5..0f3bc29 100644
--- a/src/pugixml.cpp
+++ b/src/pugixml.cpp
@@ -1841,7 +1841,7 @@ namespace pugi
bool xml_attribute::as_bool() const
{
// only look at first char
- char first = (_attr && _attr->value) ? *_attr->value : 0;
+ char first = (_attr && _attr->value) ? *_attr->value : '\0';
// 1*, t* (true), T* (True), y* (yes), Y* (YES)
return (first == '1' || first == 't' || first == 'T' || first == 'y' || first == 'Y');