Oops, Daniel.
diff --git a/tree.c b/tree.c
index ea67248..d963d2d 100644
--- a/tree.c
+++ b/tree.c
@@ -2009,12 +2009,13 @@
     xmlAttrPtr prop = node->properties;
 
     while (prop != NULL) {
-        if (!xmlStrcmp(prop->name, name)) 
+        if (!xmlStrcmp(prop->name, name))  {
 	    CHAR *ret;
 
 	    ret = xmlNodeListGetString(node->doc, prop->val, 1);
 	    if (ret == NULL) return(xmlStrdup(""));
 	    return(ret);
+        }
 	prop = prop->next;
     }
     return(NULL);