From 6c839048cfbe96e475ceb1d3bd4c51995687d2b3 Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Mon, 10 Oct 2005 02:34:26 +0000 Subject: [PATCH] Fix a typo that caused valgrind to bark on 64-bit machines. Actually was a potential source of error, so the barking was legit. This commit was SVN r7677. --- orte/mca/gpr/base/gpr_base_simplified_subscribe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orte/mca/gpr/base/gpr_base_simplified_subscribe.c b/orte/mca/gpr/base/gpr_base_simplified_subscribe.c index 231d77f4cf..598a920646 100644 --- a/orte/mca/gpr/base/gpr_base_simplified_subscribe.c +++ b/orte/mca/gpr/base/gpr_base_simplified_subscribe.c @@ -361,7 +361,7 @@ int orte_gpr_base_define_trigger_level(orte_gpr_trigger_id_t *id, } value.keyvals[i]->key = keys[i]; value.keyvals[i]->type = ORTE_SIZE; - value.keyvals[i]->value.intval = levels[i]; + value.keyvals[i]->value.size = levels[i]; } value.tokens = tokens;