diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2006-03-14 12:06:04 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2006-03-14 12:06:04 +0000 |
commit | d57b00768a8fa44d1e1c5f758440edabfa488baf (patch) | |
tree | dcdc77e502b4d251f05bc4f49f8ececebeb69df0 /rcfile_l.l | |
parent | cd5b84b42695f3a653df1e6692cf1bf5268a50f7 (diff) | |
download | fetchmail-d57b00768a8fa44d1e1c5f758440edabfa488baf.tar.gz fetchmail-d57b00768a8fa44d1e1c5f758440edabfa488baf.tar.bz2 fetchmail-d57b00768a8fa44d1e1c5f758440edabfa488baf.zip |
Fix more compiler warnings.
svn path=/branches/BRANCH_6-3/; revision=4736
Diffstat (limited to 'rcfile_l.l')
-rw-r--r-- | rcfile_l.l | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -53,7 +53,7 @@ int prc_lineno = 1; static char *in; static size_t ins; - if (yyleng + 1 > ins) { + if ((size_t)yyleng + 1 > ins) { ins = yyleng + 1; in = xrealloc(in, ins); } |