mirror of
https://github.com/neovim/neovim.git
synced 2025-10-03 08:28:34 +00:00
refactor: remove redundant casts
This commit is contained in:
@@ -406,8 +406,8 @@ static const char *skip_var_one(const char *arg)
|
||||
if (*arg == '@' && arg[1] != NUL) {
|
||||
return arg + 2;
|
||||
}
|
||||
return (char *)find_name_end(*arg == '$' || *arg == '&' ? arg + 1 : arg,
|
||||
NULL, NULL, FNE_INCL_BR | FNE_CHECK_START);
|
||||
return find_name_end(*arg == '$' || *arg == '&' ? arg + 1 : arg,
|
||||
NULL, NULL, FNE_INCL_BR | FNE_CHECK_START);
|
||||
}
|
||||
|
||||
/// List variables for hashtab "ht" with prefix "prefix".
|
||||
|
Reference in New Issue
Block a user