diff --git a/job.scm b/job.scm index 3cd72f9..0d4018b 100644 --- a/job.scm +++ b/job.scm @@ -15,11 +15,11 @@ (define (display-job-output j-res) (display (string-append - "job finished with output exitno:\n" + ";;; job finished with exitno: " (number->string (job-res-errno j-res)) "\n" - "job finished with output stdout:\n" + ";;; job finished with stdout: " (job-res-stdout j-res) "\n" - "job finished with output stderr:\n" + ";;; job finished with stderr: " (job-res-stderr j-res) "\n")) (newline))