About as trivial as a patch gets.
-----------------------------------------------
commit 058d5d926191f78a1d31041c692b0185e7d7b184 (6.5-ninjin)
from: Pontus Stenetorp <pon...@stenetorp.se>
date: Sat Jun  8 10:20:05 2024 UTC
 
 Add missing void to updateclientlist definition
 
 Caught by -pedantic implying -Wstrict-prototypes for OpenBSD's 16.0.6 Clang.
 
diff a0a0d2d64161df8d13fb4bf6adb3e78ff4d3ff03 
058d5d926191f78a1d31041c692b0185e7d7b184
commit - a0a0d2d64161df8d13fb4bf6adb3e78ff4d3ff03
commit + 058d5d926191f78a1d31041c692b0185e7d7b184
blob - af053f33b8f5838a93da2445b001e62807e554cd
blob + 55c739c938c3c436a9f937bdd383f96a41962edc
--- dwm.c
+++ dwm.c
@@ -1916,7 +1916,7 @@ updatebarpos(Monitor *m)
 }
 
 void
-updateclientlist()
+updateclientlist(void)
 {
        Client *c;
        Monitor *m;

Reply via email to