summaryrefslogtreecommitdiff
path: root/src/channel.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-06-16 11:42:09 +0100
committerBram Moolenaar <Bram@vim.org>2022-06-16 11:42:09 +0100
commit93a1096fe48e12095544924adb267e3b8a16b221 (patch)
treea6d426e87bc49d8fcee200052d17c83302f32629 /src/channel.c
parent44068e97dbd8fc8ebd93113e436a1e37a6bff52c (diff)
downloadvim-git-93a1096fe48e12095544924adb267e3b8a16b221.tar.gz
patch 8.2.5107: some callers of rettv_list_alloc() check for not OKv8.2.5107
Problem: Some callers of rettv_list_alloc() check for not OK. (Christ van Willegen) Solution: Use "==" instead of "!=" when checking the return value.
Diffstat (limited to 'src/channel.c')
-rw-r--r--src/channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/channel.c b/src/channel.c
index abd2ce1da..8a64d1756 100644
--- a/src/channel.c
+++ b/src/channel.c
@@ -5275,7 +5275,7 @@ f_ch_info(typval_T *argvars, typval_T *rettv UNUSED)
return;
channel = get_channel_arg(&argvars[0], FALSE, FALSE, 0);
- if (channel != NULL && rettv_dict_alloc(rettv) != FAIL)
+ if (channel != NULL && rettv_dict_alloc(rettv) == OK)
channel_info(channel, rettv->vval.v_dict);
}