mirror of
https://github.com/neovim/neovim.git
synced 2025-09-30 06:58:35 +00:00
refactor: remove redundant const char * casts
This commit is contained in:
@@ -1786,7 +1786,7 @@ char *get_foldtext(win_T *wp, linenr_T lnum, linenr_T lnume, foldinfo_T foldinfo
|
||||
}
|
||||
}
|
||||
if (*p != NUL) {
|
||||
p = transstr((const char *)text, true);
|
||||
p = transstr(text, true);
|
||||
xfree(text);
|
||||
text = p;
|
||||
}
|
||||
|
Reference in New Issue
Block a user