From: Pontus Stenetorp Date: Sat, 8 Jun 2024 10:36:15 +0000 (+0900) Subject: Add missing void to updateclientlist definition X-Git-Url: http://git.skullheadx.com/now.html?a=commitdiff_plain;h=5687f4696472ba6029bbba18e293e3e8b9e154ea;p=dwm.git Add missing void to updateclientlist definition Caught by -pedantic implying -Wstrict-prototypes for OpenBSD's 16.0.6 Clang. --- diff --git a/dwm.c b/dwm.c index f1d86b2..67c6b2b 100644 --- a/dwm.c +++ b/dwm.c @@ -1851,7 +1851,7 @@ updatebarpos(Monitor *m) } void -updateclientlist() +updateclientlist(void) { Client *c; Monitor *m;