summaryrefslogtreecommitdiffstats
path: root/libcsoap/soap-xml.c
diff options
context:
space:
mode:
authorGravatar rans2004-09-02 11:48:28 +0000
committerGravatar rans2004-09-02 11:48:28 +0000
commitfc13964422ceccee84640cdc71a308dd48976560 (patch)
treeb54b1e082a966823bbda804ef41149909c5ef482 /libcsoap/soap-xml.c
parent7e7de8942cab7cd63dae5aa8799c9b0cbb0a4002 (diff)
downloadcsoap-fc13964422ceccee84640cdc71a308dd48976560.tar.gz
csoap-fc13964422ceccee84640cdc71a308dd48976560.tar.bz2
Just changed casts to libxml2's BAD_CAST xwin32_migration_20040903
Diffstat (limited to 'libcsoap/soap-xml.c')
-rw-r--r--libcsoap/soap-xml.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcsoap/soap-xml.c b/libcsoap/soap-xml.c
index 1cae5b1..95b23c0 100644
--- a/libcsoap/soap-xml.c
+++ b/libcsoap/soap-xml.c
@@ -1,5 +1,5 @@
/******************************************************************
-* $Id: soap-xml.c,v 1.4 2004/08/26 17:06:18 rans Exp $
+* $Id: soap-xml.c,v 1.5 2004/09/02 11:48:28 rans Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -66,7 +66,7 @@ soap_xpath_eval(xmlDocPtr doc, const char *xpath)
xmlXPathObjectPtr result;
context = xmlXPathNewContext(doc);
- result = xmlXPathEvalExpression((xmlChar*)xpath, context);
+ result = xmlXPathEvalExpression(BAD_CAST xpath, context);
if(xmlXPathNodeSetIsEmpty(result->nodesetval)){
/* no result */
return NULL;