1
1

Fix an unchecked return code - Thanks Jeff S. for noticing it.

This commit was SVN r27201.
Этот коммит содержится в:
Josh Hursey 2012-08-31 16:12:03 +00:00
родитель de512db1fd
Коммит bdcf1717dd

Просмотреть файл

@ -10,6 +10,8 @@
* University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved.
* Copyright (c) 2012 The University of Wisconsin-La Crosse. All rights
* reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
@ -104,6 +106,9 @@ int ompi_cr_output = -1;
modules[highest_module++] = my_module; \
if (NULL != my_module->ft_event) { \
ret = my_module->ft_event(msg); \
if( OMPI_SUCCESS != ret ) { \
return ret; \
} \
} \
} \
} \