mirror of
https://github.com/neovim/neovim.git
synced 2025-10-06 09:56:31 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -173,7 +173,7 @@ int server_start(const char *addr)
|
||||
((SocketWatcher **)watchers.ga_data)[watchers.ga_len++] = watcher;
|
||||
|
||||
// Update v:servername, if not set.
|
||||
if (STRLEN(get_vim_var_str(VV_SEND_SERVER)) == 0) {
|
||||
if (strlen(get_vim_var_str(VV_SEND_SERVER)) == 0) {
|
||||
set_vservername(&watchers);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user