Remove char_u: add_pathsep()

This commit is contained in:
Mark Bainter
2015-04-19 23:06:02 +00:00
parent 28ad7b5026
commit f813fdce38
11 changed files with 30 additions and 29 deletions

View File

@@ -625,7 +625,7 @@ int mch_expand_wildcards(int num_pat, char_u **pat, int *num_file,
p = xmalloc(STRLEN((*file)[i]) + 1 + dir);
STRCPY(p, (*file)[i]);
if (dir)
add_pathsep(p); /* add '/' to a directory name */
add_pathsep((char *)p); /* add '/' to a directory name */
(*file)[j++] = p;
}
xfree(buffer);