From 70637b40fe98bda420e279e2e059fc93a9f538d6 Mon Sep 17 00:00:00 2001 From: Connor E <38229097+c-edw@users.noreply.github.com> Date: Wed, 16 Jan 2019 10:18:46 +0000 Subject: Fixes for small existing bugs. --- swaynag/swaynag.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'swaynag') diff --git a/swaynag/swaynag.c b/swaynag/swaynag.c index ceb795a8..186e9011 100644 --- a/swaynag/swaynag.c +++ b/swaynag/swaynag.c @@ -31,8 +31,9 @@ static bool terminal_execute(char *terminal, char *command) { char *cmd = malloc(sizeof(char) * (strlen(terminal) + strlen(" -e ") + strlen(fname) + 1)); sprintf(cmd, "%s -e %s", terminal, fname); execl("/bin/sh", "/bin/sh", "-c", cmd, NULL); + wlr_log_errno(WLR_ERROR, "Failed to run command, execl() returned."); free(cmd); - return true; + return false; } static void swaynag_button_execute(struct swaynag *swaynag, -- cgit v1.2.3-54-g00ecf