mirror of
https://github.com/neovim/neovim.git
synced 2025-09-17 08:48:16 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -4242,7 +4242,7 @@ static char *make_get_auname(cmdidx_T cmdidx)
|
||||
static char *make_get_fullcmd(const char *makecmd, const char *fname)
|
||||
FUNC_ATTR_NONNULL_ALL FUNC_ATTR_NONNULL_RET
|
||||
{
|
||||
size_t len = STRLEN(p_shq) * 2 + strlen(makecmd) + 1;
|
||||
size_t len = strlen(p_shq) * 2 + strlen(makecmd) + 1;
|
||||
if (*p_sp != NUL) {
|
||||
len += strlen(p_sp) + strlen(fname) + 3;
|
||||
}
|
||||
|
Reference in New Issue
Block a user