summaryrefslogtreecommitdiffstats
path: root/src/findfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/findfile.c')
-rw-r--r--src/findfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/findfile.c b/src/findfile.c
index 230f4870d4..110e06b1d6 100644
--- a/src/findfile.c
+++ b/src/findfile.c
@@ -2430,7 +2430,7 @@ uniquefy_paths(garray_T *gap, char_u *pattern)
char_u *short_name;
remove_duplicates(gap);
- ga_init2(&path_ga, (int)sizeof(char_u *), 1);
+ ga_init2(&path_ga, sizeof(char_u *), 1);
/*
* We need to prepend a '*' at the beginning of file_pattern so that the
@@ -2611,7 +2611,7 @@ expand_in_path(
return 0;
mch_dirname(curdir, MAXPATHL);
- ga_init2(&path_ga, (int)sizeof(char_u *), 1);
+ ga_init2(&path_ga, sizeof(char_u *), 1);
expand_path_option(curdir, &path_ga);
vim_free(curdir);
if (path_ga.ga_len == 0)