summaryrefslogtreecommitdiffstats
path: root/background.c
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2022-11-04 13:18:51 -0700
committerKevin McCarthy <kevin@8t8.us>2022-11-04 13:29:33 -0700
commitdb16ce472e522268bcd38d06f1ef9f1d6efc0e92 (patch)
tree475e49a2b1de0a3f25a2341c44587a4a9e36ae17 /background.c
parent0838a8f458b45ccf568c83343fec57e5d064eb21 (diff)
Add explicit void to 0-parameter function definitions.
These are the errors output with: -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition
Diffstat (limited to 'background.c')
-rw-r--r--background.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/background.c b/background.c
index 37a3d335..d3975fa1 100644
--- a/background.c
+++ b/background.c
@@ -467,7 +467,7 @@ static void update_bg_menu (MUTTMENU *menu)
}
}
-static MUTTMENU *create_bg_menu ()
+static MUTTMENU *create_bg_menu (void)
{
MUTTMENU *menu = NULL;
BACKGROUND_PROCESS *process;