From 935d0f478dd2146d1651dcb939fef11ab135250d Mon Sep 17 00:00:00 2001 From: Johannes Bauer Date: Tue, 16 Jan 2018 19:42:22 +0100 Subject: [PATCH] Fix comment Some comment was having some copy/paste issue. Fixed. --- exec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exec.c b/exec.c index 01d44cf..bae2928 100644 --- a/exec.c +++ b/exec.c @@ -101,8 +101,8 @@ struct runresult_t exec_command(const char **argv, bool show_output) { execvp(argvcopy[0], argvcopy); log_libc(LLVL_ERROR, "Execution of %s in forked child process failed execvp(3)", argvcopy[0]); - /* Exec failed, terminate chExec failed, terminate child process - * (parent will catch this as the return code) */ + /* Exec failed, terminate child with EXIT_FAILUR (parent will catch + * this as the return code) */ exit(EXIT_FAILURE); }