diff options
author | Dundar Göc <gocdundar@gmail.com> | 2022-01-01 02:55:27 +0100 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2022-01-01 02:55:34 +0100 |
commit | 3fccdeb326f5633d3c84b98ac1bd0b15b7fd28a5 (patch) | |
tree | 8ccd201b73576d80b90c90ca682b7df182ab36a0 | |
parent | 6fb9c278d8fa1f9e34a2ff6493e62a9a33d1f00f (diff) | |
download | rneovim-3fccdeb326f5633d3c84b98ac1bd0b15b7fd28a5.tar.gz rneovim-3fccdeb326f5633d3c84b98ac1bd0b15b7fd28a5.tar.bz2 rneovim-3fccdeb326f5633d3c84b98ac1bd0b15b7fd28a5.zip |
chore(fixup): bfredl size_t
-rw-r--r-- | src/nvim/ex_docmd.c | 2 | ||||
-rw-r--r-- | src/nvim/memfile.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index d67f5005fc..ba496acfff 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -4370,7 +4370,7 @@ static char_u *replace_makeprg(exarg_T *eap, char_u *p, char_u **cmdlinep) ++i; } len = (int)STRLEN(p); - new_cmdline = xmalloc(STRLEN(program) + (long)i * (len - 2) + 1); + new_cmdline = xmalloc(STRLEN(program) + (size_t)i * (len - 2) + 1); ptr = new_cmdline; while ((pos = (char_u *)strstr((char *)program, "$*")) != NULL) { i = (int)(pos - program); diff --git a/src/nvim/memfile.c b/src/nvim/memfile.c index bea92e5082..2a72d1e6a0 100644 --- a/src/nvim/memfile.c +++ b/src/nvim/memfile.c @@ -269,7 +269,7 @@ bhdr_T *mf_new(memfile_T *mfp, bool negative, unsigned page_count) // Init the data to all zero, to avoid reading uninitialized data. // This also avoids that the passwd file ends up in the swap file! - (void)memset(hp->bh_data, 0, (unsigned long)mfp->mf_page_size * page_count); + (void)memset(hp->bh_data, 0, (size_t)mfp->mf_page_size * page_count); return hp; } |