From 6a80c75110905a2c062d6536219c58cf015a1b28 Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Fri, 17 Feb 2006 05:11:53 +0000 Subject: [PATCH] The default value is not 0 as the variable is an enum ! This commit was SVN r9081. --- orte/mca/iof/base/iof_base_endpoint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orte/mca/iof/base/iof_base_endpoint.c b/orte/mca/iof/base/iof_base_endpoint.c index 5b26aece89..213e855b29 100644 --- a/orte/mca/iof/base/iof_base_endpoint.c +++ b/orte/mca/iof/base/iof_base_endpoint.c @@ -35,7 +35,7 @@ static void orte_iof_base_endpoint_construct(orte_iof_base_endpoint_t* endpoint) { - endpoint->ep_mode = 0; + endpoint->ep_mode = ORTE_IOF_SOURCE; /* default value */ endpoint->ep_seq = 0; endpoint->ep_ack = 0; endpoint->ep_fd = -1;