summaryrefslogtreecommitdiff
path: root/src/xml.c
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2010-09-30 16:26:40 -0700
committerDan Nicolaescu <dann@ics.uci.edu>2010-09-30 16:26:40 -0700
commit55e572ef8986dec1febac0e6d4581d820a23a9a5 (patch)
tree1d030aea251d2ef07465949c7b27106ba1b11609 /src/xml.c
parentd4b6d95d51c84ee12cd41fead4bb64191b6d5b6b (diff)
downloademacs-55e572ef8986dec1febac0e6d4581d820a23a9a5.tar.gz
* src/xml.c (parse_string): Use const.
Diffstat (limited to 'src/xml.c')
-rw-r--r--src/xml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xml.c b/src/xml.c
index 5829f1da538..6f4b1e79cd4 100644
--- a/src/xml.c
+++ b/src/xml.c
@@ -80,7 +80,7 @@ parse_string (Lisp_Object string, Lisp_Object base_url, int htmlp)
xmlNode *node;
Lisp_Object result = Qnil;
int ibeg, iend;
- char *burl = "";
+ const char *burl = "";
LIBXML_TEST_VERSION;