- xpath.c: fixed xmlXPathNodeCollectAndTest() to do proper
  prefix lookup.
- parserInternals.c: fixed the bug reported by Morus Walter
  due to an off by one typo in xmlStringCurrentChar()
Daniel
diff --git a/tree.c b/tree.c
index c08d2d8..4ee333d 100644
--- a/tree.c
+++ b/tree.c
@@ -106,7 +106,7 @@
  */
 xmlBufferAllocationScheme
 xmlGetBufferAllocationScheme(void) {
-    return xmlBufferAllocScheme;
+    return(xmlBufferAllocScheme);
 }
 
 /**