aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_l.l
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2009-01-14 01:56:15 +0000
committerMatthias Andree <matthias.andree@gmx.de>2009-01-14 01:56:15 +0000
commitaf7d73c7ab76ad81fed78b7f5c024daf1af87d9d (patch)
tree9edb72176a3491b5d10e48b9570aca071fdba731 /rcfile_l.l
parenta804c2b676aa9629bea657e78d5e6803b85228cc (diff)
downloadfetchmail-af7d73c7ab76ad81fed78b7f5c024daf1af87d9d.tar.gz
fetchmail-af7d73c7ab76ad81fed78b7f5c024daf1af87d9d.tar.bz2
fetchmail-af7d73c7ab76ad81fed78b7f5c024daf1af87d9d.zip
Fix a few compiler warnings around implicit conversion or extra ";".
svn path=/branches/BRANCH_6-3/; revision=5261
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';