From af7d73c7ab76ad81fed78b7f5c024daf1af87d9d Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Wed, 14 Jan 2009 01:56:15 +0000 Subject: Fix a few compiler warnings around implicit conversion or extra ";". svn path=/branches/BRANCH_6-3/; revision=5261 --- rcfile_l.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rcfile_l.l') diff --git a/rcfile_l.l b/rcfile_l.l index 03a1e55c..f19360d1 100644 --- a/rcfile_l.l +++ b/rcfile_l.l @@ -55,7 +55,7 @@ int prc_lineno = 1; if ((size_t)yyleng + 1 > ins) { ins = yyleng + 1; - in = xrealloc(in, ins); + in = (char *)xrealloc(in, ins); } memcpy(in, yytext, yyleng); in[yyleng] = '\0'; -- cgit v1.2.3