summaryrefslogtreecommitdiffstats
path: root/src/filepath.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-06-12 22:59:11 +0200
committerBram Moolenaar <Bram@vim.org>2020-06-12 22:59:11 +0200
commit71ccd03ee8a43b20000214a9c99dcc90f039edca (patch)
treeb5e89de8afbba2a8981d68b578514df046cb4aad /src/filepath.c
parent722e505d1a55dfde5ab62241d10da91d2e10c3c1 (diff)
patch 8.2.0967: unnecessary type casts for vim_strnsave()v8.2.0967
Problem: Unnecessary type casts for vim_strnsave(). Solution: Remove the type casts.
Diffstat (limited to 'src/filepath.c')
-rw-r--r--src/filepath.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/filepath.c b/src/filepath.c
index 4a4948ad6e..90d04cfcf1 100644
--- a/src/filepath.c
+++ b/src/filepath.c
@@ -389,7 +389,7 @@ repeat:
if (mch_isdir(*fnamep))
{
// Make room for one or two extra characters.
- *fnamep = vim_strnsave(*fnamep, (int)STRLEN(*fnamep) + 2);
+ *fnamep = vim_strnsave(*fnamep, STRLEN(*fnamep) + 2);
vim_free(*bufp); // free any allocated file name
*bufp = *fnamep;
if (*fnamep == NULL)
@@ -655,7 +655,7 @@ repeat:
p = vim_strchr(s, sep);
if (p != NULL)
{
- pat = vim_strnsave(s, (int)(p - s));
+ pat = vim_strnsave(s, p - s);
if (pat != NULL)
{
s = p + 1;
@@ -663,7 +663,7 @@ repeat:
p = vim_strchr(s, sep);
if (p != NULL)
{
- sub = vim_strnsave(s, (int)(p - s));
+ sub = vim_strnsave(s, p - s);
str = vim_strnsave(*fnamep, *fnamelen);
if (sub != NULL && str != NULL)
{
@@ -1296,7 +1296,7 @@ mkdir_recurse(char_u *dir, int prot)
return OK;
// If the directory exists we're done. Otherwise: create it.
- updir = vim_strnsave(dir, (int)(p - dir));
+ updir = vim_strnsave(dir, p - dir);
if (updir == NULL)
return FAIL;
if (mch_isdir(updir))
@@ -1594,7 +1594,7 @@ f_readfile(typval_T *argvars, typval_T *rettv)
--prevlen;
}
if (prevlen == 0)
- s = vim_strnsave(start, (int)len);
+ s = vim_strnsave(start, len);
else
{
// Change "prev" buffer to be the right size. This way
@@ -3037,7 +3037,7 @@ expand_backtick(
int i;
// Create the command: lop off the backticks.
- cmd = vim_strnsave(pat + 1, (int)STRLEN(pat) - 2);
+ cmd = vim_strnsave(pat + 1, STRLEN(pat) - 2);
if (cmd == NULL)
return -1;