From fd1e9a631325ad71d4c1c9cf130bb01b5f3acfdc Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Mon, 27 Apr 2009 14:10:48 +0000 Subject: [PATCH] Minor fix -- receive 3 ints, not 2. This commit was SVN r21077. --- orte/mca/notifier/command/notifier_command_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orte/mca/notifier/command/notifier_command_module.c b/orte/mca/notifier/command/notifier_command_module.c index a883386b11..0cb6b6e53c 100644 --- a/orte/mca/notifier/command/notifier_command_module.c +++ b/orte/mca/notifier/command/notifier_command_module.c @@ -99,7 +99,7 @@ static int send_command(int severity, int errcode, char *msg) 2 = exit status returned by waitpid() (only relevant if exited==1) */ if (ORTE_SUCCESS != (rc = orte_notifier_command_read_fd(mca_notifier_command_component.to_parent[0], - sizeof(int) * 2, csel))) { + sizeof(int) * 3, csel))) { goto error; } /* Did the grandchild exit? */