aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
Diffstat (limited to 'sway')
-rw-r--r--sway/commands/exec_always.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/commands/exec_always.c b/sway/commands/exec_always.c
index 3786bfb7..781c86c9 100644
--- a/sway/commands/exec_always.c
+++ b/sway/commands/exec_always.c
@@ -66,7 +66,8 @@ struct cmd_results *cmd_exec_process(int argc, char **argv) {
if ((child = fork()) == 0) {
close(fd[1]);
execlp("sh", "sh", "-c", cmd, (void *)NULL);
- _exit(0);
+ sway_log_errno(SWAY_ERROR, "execlp failed");
+ _exit(1);
}
ssize_t s = 0;
while ((size_t)s < sizeof(pid_t)) {