dwl

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

commit ef76c921ed9dfef892202342bc4b9c31cc16a0c9
parent 388c5580cbb032c9e5c3a9b2b578f0e0e27fc97b
Author: Devin J. Pohly <djpohly@gmail.com>
Date:   Fri, 25 Dec 2020 01:38:24 -0500

no need to cast NULL to void *

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

diff --git a/dwl.c b/dwl.c @@ -1883,7 +1883,7 @@ run(char *startup_cmd) if (startup_pid < 0) EBARF("startup: fork"); if (startup_pid == 0) { - execl("/bin/sh", "/bin/sh", "-c", startup_cmd, (void *)NULL); + execl("/bin/sh", "/bin/sh", "-c", startup_cmd, NULL); EBARF("startup: execl"); } }