diff options
Diffstat (limited to 'src/nvim/match.c')
-rw-r--r-- | src/nvim/match.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/match.c b/src/nvim/match.c index d54e2ce58a..e087d4f45d 100644 --- a/src/nvim/match.c +++ b/src/nvim/match.c @@ -419,7 +419,7 @@ static void next_search_hl(win_T *win, match_T *search_hl, match_T *shl, linenr_ FUNC_ATTR_NONNULL_ARG(2) { colnr_T matchcol; - long nmatched = 0; + int nmatched = 0; const int called_emsg_before = called_emsg; // for :{range}s/pat only highlight inside the range |