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 506e8e20..9f4bf5c8 100644
--- a/rcfile_l.l
+++ b/rcfile_l.l
@@ -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);
}