summaryrefslogtreecommitdiffstats
path: root/src/optionstr.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/optionstr.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/optionstr.c')
-rw-r--r--src/optionstr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/optionstr.c b/src/optionstr.c
index 71ad1e4b28..3c9f98acb2 100644
--- a/src/optionstr.c
+++ b/src/optionstr.c
@@ -3075,7 +3075,7 @@ check_ff_value(char_u *p)
* restore_shm_value() exactly the same number of times.
*/
void
-save_clear_shm_value()
+save_clear_shm_value(void)
{
if (STRLEN(p_shm) >= SHM_LEN)
{
@@ -3094,7 +3094,7 @@ save_clear_shm_value()
* Restore the shortmess Flags set from the save_clear_shm_value() function.
*/
void
-restore_shm_value()
+restore_shm_value(void)
{
if (--set_shm_recursive == 0)
{