summaryrefslogtreecommitdiffstats
path: root/src/gui_gtk_x11.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/gui_gtk_x11.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/gui_gtk_x11.c')
-rw-r--r--src/gui_gtk_x11.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui_gtk_x11.c b/src/gui_gtk_x11.c
index b8e08f5ea4..7ef63b8421 100644
--- a/src/gui_gtk_x11.c
+++ b/src/gui_gtk_x11.c
@@ -463,7 +463,7 @@ alloc_resize_hist(int width, int height)
* This list is empty when there are no outstanding resize requests.
*/
static void
-clear_resize_hists()
+clear_resize_hists(void)
{
# ifdef ENABLE_RESIZE_HISTORY_LOG
int i = 0;
@@ -516,7 +516,7 @@ match_stale_width_height(int width, int height)
# if defined(EXITFREE)
static void
-free_all_resize_hist()
+free_all_resize_hist(void)
{
clear_resize_hists();
vim_free(latest_resize_hist);