diff --git a/ChangeLog b/ChangeLog index d421eb2e..54a520c2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Fri Feb 16 14:20:35 CET 2001 Daniel Veillard + + * xpath.c: xmlXPathEqualNodeSetFloat the arg is really a double now + Fri Feb 16 01:10:06 CET 2001 Daniel Veillard * tree.[ch] parser.c xpath.c: fixed the problem of addressing diff --git a/xpath.c b/xpath.c index 87e9c2ce..e889b735 100644 --- a/xpath.c +++ b/xpath.c @@ -1970,7 +1970,7 @@ xmlXPathEqualNodeSetString(xmlXPathObjectPtr arg, const xmlChar *str) { * Returns 0 or 1 depending on the results of the test. */ int -xmlXPathEqualNodeSetFloat(xmlXPathObjectPtr arg, float f) { +xmlXPathEqualNodeSetFloat(xmlXPathObjectPtr arg, double f) { char buf[100] = ""; if ((arg == NULL) ||