summaryrefslogtreecommitdiffstats
path: root/examples/csoap/simpleserver.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 /examples/csoap/simpleserver.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 'examples/csoap/simpleserver.c')
-rw-r--r--examples/csoap/simpleserver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/csoap/simpleserver.c b/examples/csoap/simpleserver.c
index dab8382..7c16796 100644
--- a/examples/csoap/simpleserver.c
+++ b/examples/csoap/simpleserver.c
@@ -1,5 +1,5 @@
/******************************************************************
- * $Id: simpleserver.c,v 1.5 2004/08/30 15:26:49 snowdrop Exp $
+ * $Id: simpleserver.c,v 1.6 2004/09/02 11:48:58 rans Exp $
*
* CSOAP Project: CSOAP examples project
* Copyright (C) 2003 Ferhat Ayaz
@@ -41,7 +41,7 @@ void add_name(xmlNodePtr node, SoapEnv *env)
soap_env_add_itemf(env,"xsd:string", "echo",
"Hello '%s'", name);
- xmlFree((xmlChar*)name);
+ xmlFree(BAD_CAST name);
}