From f36642b73b70abea2769cd00724fc5fd61a70f2b Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Wed, 28 Sep 2005 18:18:12 +0000 Subject: [PATCH] * fix compile error. i should know better This commit was SVN r7534. --- opal/memory/memory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opal/memory/memory.c b/opal/memory/memory.c index 677b6833a5..c88539ee5c 100644 --- a/opal/memory/memory.c +++ b/opal/memory/memory.c @@ -194,7 +194,7 @@ opal_mem_free_register_handler(opal_mem_free_unpin_fn_t *func, void *cbdata) opal_list_append(&callback_list, (opal_list_item_t*) new_cbitem); done: - if (OMPI_EXISTS == rc && NULL != new_cbitem) { + if (OMPI_EXISTS == ret && NULL != new_cbitem) { OBJ_RELEASE(new_cbitem); }