mirror of
https://github.com/neovim/neovim.git
synced 2025-10-16 14:56:08 +00:00
refactor: replace char_u with char 24 (#21823)
refactor: replace char_u with char Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -1482,7 +1482,7 @@ static char *shada_filename(const char *file)
|
||||
if (p_shadafile != NULL && *p_shadafile != NUL) {
|
||||
file = p_shadafile;
|
||||
} else {
|
||||
if ((file = (char *)find_shada_parameter('n')) == NULL || *file == NUL) {
|
||||
if ((file = find_shada_parameter('n')) == NULL || *file == NUL) {
|
||||
file = shada_get_default_file();
|
||||
}
|
||||
// XXX It used to be one level lower, so that whatever is in
|
||||
|
Reference in New Issue
Block a user