comparison src/channel.c @ 32009:4545f58c8490 v9.0.1336

patch 9.0.1336: functions without arguments are not always declared properly Commit: https://github.com/vim/vim/commit/a23a11b5bf03454b71fdb5deac0d5f641e222160 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Tue Feb 21 14:27:41 2023 +0000 patch 9.0.1336: functions without arguments are not always declared properly Problem: Functions without arguments are not always declared properly. Solution: Use "(void)" instead of "()". (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/12031)
author Bram Moolenaar <Bram@vim.org>
date Tue, 21 Feb 2023 15:30:08 +0100
parents 7c690775716c
children 97255d909654
comparison
equal deleted inserted replaced
32008:6b51ad8c5e8e 32009:4545f58c8490
4178 # if defined(FEAT_GUI) || defined(PROTO) 4178 # if defined(FEAT_GUI) || defined(PROTO)
4179 /* 4179 /*
4180 * Return TRUE when there is any channel with a keep_open flag. 4180 * Return TRUE when there is any channel with a keep_open flag.
4181 */ 4181 */
4182 int 4182 int
4183 channel_any_keep_open() 4183 channel_any_keep_open(void)
4184 { 4184 {
4185 channel_T *channel; 4185 channel_T *channel;
4186 4186
4187 FOR_ALL_CHANNELS(channel) 4187 FOR_ALL_CHANNELS(channel)
4188 if (channel->ch_keep_open) 4188 if (channel->ch_keep_open)