mirror of
https://github.com/neovim/neovim.git
synced 2025-09-21 02:38:19 +00:00
refactor: remove redundant const char * casts
This commit is contained in:
@@ -973,7 +973,7 @@ static void uniquefy_paths(garray_T *gap, char *pattern)
|
||||
for (int i = 0; i < gap->ga_len && !got_int; i++) {
|
||||
char *path = fnames[i];
|
||||
int is_in_curdir;
|
||||
char *dir_end = (char *)gettail_dir((const char *)path);
|
||||
char *dir_end = (char *)gettail_dir(path);
|
||||
char *pathsep_p;
|
||||
char *path_cutoff;
|
||||
|
||||
|
Reference in New Issue
Block a user