aboutsummaryrefslogtreecommitdiffstats
path: root/debugXML.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2001-11-01 08:38:12 +0000
committerDaniel Veillard <veillard@src.gnome.org>2001-11-01 08:38:12 +0000
commitebd38c5f92bdfb21c042b917651bb2d5e4de7927 (patch)
treee891eac150b50a9dd4a4343c123f5aa6ee453cf5 /debugXML.c
parent8bdb91dd5c6c6c89cd1668ba78b1048239ca6ca6 (diff)
downloadandroid_external_libxml2-ebd38c5f92bdfb21c042b917651bb2d5e4de7927.tar.gz
android_external_libxml2-ebd38c5f92bdfb21c042b917651bb2d5e4de7927.tar.bz2
android_external_libxml2-ebd38c5f92bdfb21c042b917651bb2d5e4de7927.zip
bool can be a reserved keyword. Daniel
* debugXML.c include/libxml/debugXML.h: bool can be a reserved keyword. Daniel
Diffstat (limited to 'debugXML.c')
-rw-r--r--debugXML.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/debugXML.c b/debugXML.c
index b1461a92..bbda5d7e 100644
--- a/debugXML.c
+++ b/debugXML.c
@@ -1162,14 +1162,14 @@ xmlLsOneNode(FILE *output, xmlNodePtr node) {
/**
* xmlBoolToText:
- * @bool : a bool to turn into text
+ * @boolval : a bool to turn into text
*
* Convenient way to turn bool into text
*/
const char *
-xmlBoolToText(int bool)
+xmlBoolToText(int boolval)
{
- if (bool)
+ if (boolval)
return("True");
else
return("False");