aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_l.l
diff options
context:
space:
mode:
Diffstat (limited to 'rcfile_l.l')
-rw-r--r--rcfile_l.l2
1 files changed, 1 insertions, 1 deletions
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';