mirror of
https://github.com/neovim/neovim.git
synced 2025-10-07 02:16:31 +00:00
refactor: remove redundant casts
This commit is contained in:
@@ -2499,7 +2499,7 @@ bool aupat_is_buflocal(char *pat, int patlen)
|
||||
|
||||
int aupat_get_buflocal_nr(char *pat, int patlen)
|
||||
{
|
||||
assert(aupat_is_buflocal((char *)pat, patlen));
|
||||
assert(aupat_is_buflocal(pat, patlen));
|
||||
|
||||
// "<buffer>"
|
||||
if (patlen == 8) {
|
||||
|
Reference in New Issue
Block a user