diff options
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); } |