diff options
| author | Leonardo Hernández Hernández <leohdz172@protonmail.com> | 2022-04-12 23:52:05 -0500 |
|---|---|---|
| committer | Leonardo Hernández Hernández <leohdz172@protonmail.com> | 2022-04-12 23:52:05 -0500 |
| commit | 4a2e761914f88d4d284ec74b147104f53c394523 (patch) | |
| tree | 9bce59452bdad4cab83e0849b3169794890c28b4 | |
| parent | Merge remote-tracking branch 'djpohly/main' into HEAD (diff) | |
| download | dwl-4a2e761914f88d4d284ec74b147104f53c394523.tar.gz dwl-4a2e761914f88d4d284ec74b147104f53c394523.tar.bz2 dwl-4a2e761914f88d4d284ec74b147104f53c394523.tar.xz dwl-4a2e761914f88d4d284ec74b147104f53c394523.tar.zst dwl-4a2e761914f88d4d284ec74b147104f53c394523.zip | |
replace deleted EBARF() with die()
Diffstat (limited to '')
| -rw-r--r-- | dwl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 */ |
