From ebb4962072931a4eebe8144f04f4e2cf91476e14 Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Tue, 26 Oct 2010 14:48:20 +0000 Subject: [PATCH] fix typo This commit was SVN r23949. --- orte/runtime/orte_wait.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/orte/runtime/orte_wait.h b/orte/runtime/orte_wait.h index b9573c1ae9..6377c55d28 100644 --- a/orte/runtime/orte_wait.h +++ b/orte/runtime/orte_wait.h @@ -288,8 +288,8 @@ ORTE_DECLSPEC OBJ_CLASS_DECLARATION(orte_notify_event_t); opal_event_t *tmp; \ int timeout; \ tmp = OBJ_NEW(opal_event_t); \ - tmp = opal_event.evtimer_set(opal_event_base, \ - tmp, (cbfunc), tmp); \ + opal_event.evtimer_set(opal_event_base, \ + tmp, (cbfunc), tmp); \ timeout = (deltat) * (n); \ if ((maxwait) > 0 && timeout > (maxwait)) { \ timeout = (maxwait); \ @@ -315,8 +315,8 @@ ORTE_DECLSPEC OBJ_CLASS_DECLARATION(orte_notify_event_t); struct timeval now; \ opal_event_t *tmp; \ tmp = OBJ_NEW(opal_event_t); \ - tmp = opal_event.evtimer_set(opal_event_base, \ - tmp, (cbfunc), tmp); \ + opal_event.evtimer_set(opal_event_base, \ + tmp, (cbfunc), tmp); \ now.tv_sec = (sec); \ now.tv_usec = (usec); \ OPAL_OUTPUT_VERBOSE((1, orte_debug_output, \