mirror of
https://github.com/neovim/neovim.git
synced 2025-10-16 23:06:14 +00:00
refactor: replace char_u with char 21 (#21779)
refactor: replace char_u with char Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -1341,7 +1341,7 @@ static void shada_read(ShaDaReadDef *const sd_reader, const int flags)
|
||||
case kSDItemBufferList:
|
||||
for (size_t i = 0; i < cur_entry.data.buffer_list.size; i++) {
|
||||
char *const sfname =
|
||||
(char *)path_try_shorten_fname((char_u *)cur_entry.data.buffer_list.buffers[i].fname);
|
||||
path_try_shorten_fname(cur_entry.data.buffer_list.buffers[i].fname);
|
||||
buf_T *const buf =
|
||||
buflist_new(cur_entry.data.buffer_list.buffers[i].fname, sfname, 0, BLN_LISTED);
|
||||
if (buf != NULL) {
|
||||
|
Reference in New Issue
Block a user