summaryrefslogtreecommitdiffstats
path: root/src/insexpand.c
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2023-02-21 14:27:41 +0000
committerBram Moolenaar <Bram@vim.org>2023-02-21 14:27:41 +0000
commita23a11b5bf03454b71fdb5deac0d5f641e222160 (patch)
tree5ce9eb5b9668eb891072ee7e03823b1c68214656 /src/insexpand.c
parentd950984489e50b12d87c85f0cce1d672c880aa23 (diff)
patch 9.0.1336: functions without arguments are not always declared properlyv9.0.1336
Problem: Functions without arguments are not always declared properly. Solution: Use "(void)" instead of "()". (Yegappan Lakshmanan, closes #12031)
Diffstat (limited to 'src/insexpand.c')
-rw-r--r--src/insexpand.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/insexpand.c b/src/insexpand.c
index 779bf5eeb8..1362781ec3 100644
--- a/src/insexpand.c
+++ b/src/insexpand.c
@@ -2994,7 +2994,7 @@ ins_compl_mode(void)
* one assigned yet.
*/
static void
-ins_compl_update_sequence_numbers()
+ins_compl_update_sequence_numbers(void)
{
int number = 0;
compl_T *match;
@@ -3457,7 +3457,7 @@ get_next_filename_completion(void)
* Get the next set of command-line completions matching "compl_pattern".
*/
static void
-get_next_cmdline_completion()
+get_next_cmdline_completion(void)
{
char_u **matches;
int num_matches;