Introduction
Introduction Statistics Contact Development Disclaimer Help
Add missing void to updateclientlist definition - dwm - dynamic window manager
git clone git://git.suckless.org/dwm
Log
Files
Refs
README
LICENSE
---
commit 5687f4696472ba6029bbba18e293e3e8b9e154ea
parent 061e9fe9a7db396c0c4f3d996c3908fb43a6d50c
Author: Pontus Stenetorp <[email protected]>
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:
M dwm.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;
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.