summaryrefslogtreecommitdiff
path: root/dwl.c
diff options
context:
space:
mode:
authorLeonardo Hernández Hernández <leohdz172@protonmail.com>2022-04-12 23:52:05 -0500
committerLeonardo Hernández Hernández <leohdz172@protonmail.com>2022-04-12 23:52:05 -0500
commit4a2e761914f88d4d284ec74b147104f53c394523 (patch)
tree9bce59452bdad4cab83e0849b3169794890c28b4 /dwl.c
parent29a2b647b27e5314fa1b9cb6158eb95cfb0bc405 (diff)
replace deleted EBARF() with die()
Diffstat (limited to 'dwl.c')
-rw-r--r--dwl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwl.c b/dwl.c
index dd62956..06402c0 100644
--- a/dwl.c
+++ b/dwl.c
@@ -2339,7 +2339,7 @@ sigchld(int unused)
* setting our own disposition for SIGCHLD.
*/
if (signal(SIGCHLD, sigchld) == SIG_ERR)
- EBARF("can't install SIGCHLD handler");
+ die("can't install SIGCHLD handler:");
/* WNOWAIT leaves the child in a waitable state, in case this is the
* XWayland process
*/