From 8d86db1a74e8468493b5898a6a6a42371b5d6c16 Mon Sep 17 00:00:00 2001 From: Michael Roitzsch Date: Sun, 16 Jan 2005 18:47:19 +0000 Subject: fixing compiler warnings * unfortunately, strtol() wants a char** in its second arg, not a const char**, which transitively changes the entire declaration * if namelen is being used as an array index, it should better be unsigned CVS patchset: 7355 CVS date: 2005/01/16 18:47:19 --- src/xine-utils/xmllexer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/xine-utils/xmllexer.h') diff --git a/src/xine-utils/xmllexer.h b/src/xine-utils/xmllexer.h index d142c3d0f..77c28c631 100644 --- a/src/xine-utils/xmllexer.h +++ b/src/xine-utils/xmllexer.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xmllexer.h,v 1.4 2005/01/16 17:51:04 dsalt Exp $ + * $Id: xmllexer.h,v 1.5 2005/01/16 18:47:19 mroi Exp $ * */ @@ -50,6 +50,6 @@ /* public functions */ void lexer_init(char * buf, int size); int lexer_get_token(char * tok, int tok_size); -char *lexer_decode_entities (const char *tok); +char *lexer_decode_entities (char *tok); #endif -- cgit v1.2.3