aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/exec.cpp
diff options
context:
space:
mode:
authorGravatar Kurtis Rader <krader@skepticism.us>2016-05-19 19:27:22 -0700
committerGravatar Kurtis Rader <krader@skepticism.us>2016-05-19 19:27:22 -0700
commit7c243694549cc1d6776873c8a97c99fc5889b68d (patch)
tree229ac4852acce031fe2b0b36ab27250e8d6bd514 /src/exec.cpp
parent46be5ac468db923bd3d19c55638b723aa760cd4e (diff)
fix building on Cygwin
Cygwin still doesn't support any of the backtrace functions. Also, remove a spurious newline from a debug message. Fixes #2993
Diffstat (limited to 'src/exec.cpp')
-rw-r--r--src/exec.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exec.cpp b/src/exec.cpp
index afd09f6a..aefdbc12 100644
--- a/src/exec.cpp
+++ b/src/exec.cpp
@@ -1058,7 +1058,7 @@ void exec_job(parser_t &parser, job_t *j) {
// A 0 pid means we failed to posix_spawn. Since we have no pid, we'll never get
// told when it's exited, so we have to mark the process as failed.
- debug(2, L"Fork #%d, pid %d: spawn external command '%s' from '%ls'\n",
+ debug(2, L"Fork #%d, pid %d: spawn external command '%s' from '%ls'",
g_fork_count, pid, actual_cmd, file ? file : L"<no file>");
if (pid == 0) {
job_mark_process_as_failed(j, p);