summaryrefslogtreecommitdiffstats
path: root/src/map.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-05-03 18:57:05 +0200
committerBram Moolenaar <Bram@vim.org>2021-05-03 18:57:05 +0200
commit551c1aed65817558ac1ece541c246ea585645807 (patch)
tree347fa3f99a9a053c0c1715778df5e7d022de4511 /src/map.c
parent2bf6034e5caf36b319148f46ba9a12e36c3bd41d (diff)
patch 8.2.2826: compiler warnings for int to size_t conversionv8.2.2826
Problem: Compiler warnings for int to size_t conversion. (Randall W. Morris) Solution: Add type casts.
Diffstat (limited to 'src/map.c')
-rw-r--r--src/map.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map.c b/src/map.c
index 31742c13b3..2e792feaa0 100644
--- a/src/map.c
+++ b/src/map.c
@@ -1552,7 +1552,7 @@ check_abbr(
escaped = vim_strsave_escape_csi(tb + j);
if (escaped != NULL)
{
- newlen = STRLEN(escaped);
+ newlen = (int)STRLEN(escaped);
mch_memmove(tb + j, escaped, newlen);
j += newlen;
vim_free(escaped);