diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-05-24 13:22:22 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-05-24 13:22:22 +0200 |
commit | e2ad826f431b2f8dd1b235c219282cc3961f7188 (patch) | |
tree | 8902f3be38d3a8088ece4b3dd334e5d72f899efd /src/search.c | |
parent | 984f031fb02fe301a8dbf8a35b871c9f60b8f61e (diff) | |
download | vim-git-e2ad826f431b2f8dd1b235c219282cc3961f7188.tar.gz |
patch 8.1.1376: warnings for size_t/int mixupsv8.1.1376
Problem: Warnings for size_t/int mixups.
Solution: Change types, add type casts. (Mike Williams)
Diffstat (limited to 'src/search.c')
-rw-r--r-- | src/search.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/search.c b/src/search.c index 2bcbf0ae4..e57c101d7 100644 --- a/src/search.c +++ b/src/search.c @@ -4990,7 +4990,7 @@ search_stat( if (cur > 0) { char t[SEARCH_STAT_BUF_LEN] = ""; - int len; + size_t len; #ifdef FEAT_RIGHTLEFT if (curwin->w_p_rl && *curwin->w_p_rlc == 's') |