mirror of
https://github.com/neovim/neovim.git
synced 2025-10-17 15:21:47 +00:00
refactor: replace char_u with char 17 - remove STRLCPY (#21235)
refactor: replace char_u with char Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -7861,7 +7861,7 @@ repeat:
|
||||
|
||||
if (p != NULL) {
|
||||
if (c == '.') {
|
||||
os_dirname((char_u *)dirname, MAXPATHL);
|
||||
os_dirname(dirname, MAXPATHL);
|
||||
if (has_homerelative) {
|
||||
s = xstrdup(dirname);
|
||||
home_replace(NULL, s, dirname, MAXPATHL, true);
|
||||
|
Reference in New Issue
Block a user