dwl

My patch set and modifications to dwl
git clone git://git.ethandl.dev/dwl
Log | Files | Refs | README | LICENSE

commit da77e34ee55ef4d2f92f632fea880610e8fc7fda
parent 20f61a59afeb4634dbdccfcbead95ec5852ef456
Author: Ben Collerson <benc@benc.cc>
Date:   Sun,  9 Apr 2023 14:48:55 +1000

Use uint32_t for ui Arg

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

diff --git a/dwl.c b/dwl.c @@ -82,7 +82,7 @@ enum { NetWMWindowTypeDialog, NetWMWindowTypeSplash, NetWMWindowTypeToolbar, typedef union { int i; - unsigned int ui; + uint32_t ui; float f; const void *v; } Arg;