summaryrefslogtreecommitdiffstats
path: root/src/misc1.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/misc1.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/misc1.c')
-rw-r--r--src/misc1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/misc1.c b/src/misc1.c
index c83b7ae0d5..a03c405e5b 100644
--- a/src/misc1.c
+++ b/src/misc1.c
@@ -1313,7 +1313,7 @@ free_users(void)
#if defined(MSWIN) || defined(PROTO)
/*
- * Initilize $VIM and $VIMRUNTIME when 'enc' is updated.
+ * Initialize $VIM and $VIMRUNTIME when 'enc' is updated.
*/
void
init_vimdir(void)
@@ -2777,7 +2777,7 @@ restore_v_event(dict_T *v_event, save_v_event_T *sve)
* Fires a ModeChanged autocmd event if appropriate.
*/
void
-may_trigger_modechanged()
+may_trigger_modechanged(void)
{
#ifdef FEAT_EVAL
dict_T *v_event;