summaryrefslogtreecommitdiff
path: root/dwm.c
diff options
context:
space:
mode:
authorPontus Stenetorp <pontus@stenetorp.se>2024-06-08 19:36:15 +0900
committerRafael Marçalo <raroma09@gmail.com>2024-06-10 21:10:09 +0100
commit456708901f34af44eb97332c133178bc69f34eea (patch)
treef1bda5b62e15a54ea7ada102cff54cf4878dbc41 /dwm.c
parentbb525d20fa7f6ef9755b4c31eb0a116433853849 (diff)
Add missing void to updateclientlist definitionHEADmaster
Caught by -pedantic implying -Wstrict-prototypes for OpenBSD's 16.0.6 Clang.
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c
index afa09e0..d5dbfc8 100644
--- a/dwm.c
+++ b/dwm.c
@@ -2016,7 +2016,7 @@ updatebarpos(Monitor *m)
}
void
-updateclientlist()
+updateclientlist(void)
{
Client *c;
Monitor *m;