diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2011-12-23 21:59:34 +0100 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2011-12-23 21:59:34 +0100 |
commit | cad2be0b4ffd9490ca83cdb355b6402838811413 (patch) | |
tree | a798f3199bbab548362bf95f49055b80dfdf3026 /src/libezxml | |
parent | 65517aebee0a7624b31dd9ce481e7f00ece3d497 (diff) | |
download | pianobar-cad2be0b4ffd9490ca83cdb355b6402838811413.tar.gz pianobar-cad2be0b4ffd9490ca83cdb355b6402838811413.tar.bz2 pianobar-cad2be0b4ffd9490ca83cdb355b6402838811413.zip |
Fix warnings found by -Wcast-qual
Diffstat (limited to 'src/libezxml')
-rw-r--r-- | src/libezxml/ezxml.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libezxml/ezxml.c b/src/libezxml/ezxml.c index ced87ea..0e1dd5d 100644 --- a/src/libezxml/ezxml.c +++ b/src/libezxml/ezxml.c @@ -108,7 +108,7 @@ static ezxml_t ezxml_insert(ezxml_t xml, ezxml_t dest, size_t off) // Adds a child tag. off is the offset of the child tag relative to the start // of the parent tag's character content. Returns the child tag. -static ezxml_t ezxml_add_child(ezxml_t xml, const char *name, size_t off) +static ezxml_t ezxml_add_child(ezxml_t xml, char *name, size_t off) { ezxml_t child; @@ -131,7 +131,7 @@ ezxml_t ezxml_child(ezxml_t xml, const char *name) } // returns a new empty ezxml structure with the given root tag name -static ezxml_t ezxml_new(const char *name) +static ezxml_t ezxml_new(char *name) { static char *ent[] = { "lt;", "<", "gt;", ">", "quot;", """, "apos;", "'", "amp;", "&", NULL }; |