summaryrefslogtreecommitdiff
path: root/vmsjobs.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2013-05-27 13:01:48 -0400
committerPaul Smith <psmith@gnu.org>2013-05-27 13:01:48 -0400
commite8f5d322cf720f65a1d24c1219bcedef8af9e6ec (patch)
treee50750525d4a4576033edb283f023891ede2c668 /vmsjobs.c
parentdc922e3f4c442255ba8deb84c9300aa7e3a6108c (diff)
downloadgunmake-e8f5d322cf720f65a1d24c1219bcedef8af9e6ec.tar.gz
Porting to VMS, from Hartmut Becker.
Diffstat (limited to 'vmsjobs.c')
-rw-r--r--vmsjobs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vmsjobs.c b/vmsjobs.c
index 2a59152..7e685c8 100644
--- a/vmsjobs.c
+++ b/vmsjobs.c
@@ -149,7 +149,7 @@ vmsHandleChildTerm(struct child *child)
{
/* The commands failed. Write an error message,
delete non-precious targets, and abort. */
- child_error (c->file->name, c->cstatus, 0, 0, 0);
+ child_error (c, c->cstatus, 0, 0, 0);
c->file->update_status = 1;
delete_child_targets (c);
}
@@ -158,7 +158,7 @@ vmsHandleChildTerm(struct child *child)
if (child_failed)
{
/* The commands failed, but we don't care. */
- child_error (c->file->name, c->cstatus, 0, 0, 1);
+ child_error (c, c->cstatus, 0, 0, 1);
child_failed = 0;
}