mirror of
https://github.com/neovim/neovim.git
synced 2025-09-19 09:48:19 +00:00
vim-patch:8.1.1260: comparing with pointer instead of value
Problem: Comparing with pointer instead of value.
Solution: Add a "*". (Ken Takata, closes vim/vim#4336)
e4f5f3aa3d
This commit is contained in:
@@ -5400,7 +5400,7 @@ invalid_count:
|
||||
if (parse_addr_type_arg(val, (int)vallen, argt, addr_type_arg) == FAIL) {
|
||||
return FAIL;
|
||||
}
|
||||
if (addr_type_arg != ADDR_LINES) {
|
||||
if (*addr_type_arg != ADDR_LINES) {
|
||||
*argt |= (ZEROR | NOTADR);
|
||||
}
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user