dwm

dynamic window manager

git clone https://9o.is/git/dwm.git

commit 687f89b9f73329728ef91712fa41b883f2bdbcfd
parent 395dc58cec032bf2be703060923c97e0964ec3f9
Author: Pontus Stenetorp <pontus@stenetorp.se>
Date:   Sat,  8 Jun 2024 19:36:15 +0900

Add missing void to updateclientlist definition

Caught by -pedantic implying -Wstrict-prototypes for OpenBSD's 16.0.6 Clang.

Diffstat:
Mdwm.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dwm.c b/dwm.c @@ -1851,7 +1851,7 @@ updatebarpos(Monitor *m) } void -updateclientlist() +updateclientlist(void) { Client *c; Monitor *m;