summaryrefslogtreecommitdiffstats
path: root/src/quickfix.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/quickfix.c')
-rw-r--r--src/quickfix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quickfix.c b/src/quickfix.c
index 270810c314..9237b4b814 100644
--- a/src/quickfix.c
+++ b/src/quickfix.c
@@ -5921,7 +5921,7 @@ vgr_match_buflines(
int found_match = FALSE;
long lnum;
colnr_T col;
- int pat_len = STRLEN(spat);
+ int pat_len = (int)STRLEN(spat);
for (lnum = 1; lnum <= buf->b_ml.ml_line_count && *tomatch > 0; ++lnum)
{