1
1

Fixed some newly-induced warnings

This commit was SVN r23694.
Этот коммит содержится в:
Ralph Castain 2010-08-31 14:51:19 +00:00
родитель 97511912ec
Коммит b982f908e8
3 изменённых файлов: 3 добавлений и 3 удалений

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

@ -189,7 +189,7 @@ void orte_errmgr_base_log(int error_code, char *filename, int line)
ORTE_ERROR_NAME(error_code), filename, line);
}
int orte_errmgr_base_abort(int error_code, char *fmt, ...)
void orte_errmgr_base_abort(int error_code, char *fmt, ...)
{
va_list arglist;

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

@ -60,7 +60,7 @@ typedef uint8_t orte_errmgr_cmd_flag_t;
*/
ORTE_DECLSPEC void orte_errmgr_base_log(int error_code, char *filename, int line);
ORTE_DECLSPEC int orte_errmgr_base_abort(int error_code, char *fmt, ...)
ORTE_DECLSPEC void orte_errmgr_base_abort(int error_code, char *fmt, ...)
__opal_attribute_format__(__printf__, 2, 3)
__opal_attribute_noreturn__;

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

@ -169,7 +169,7 @@ typedef void (*orte_errmgr_base_module_log_fn_t)(int error_code, char *filename,
* itself, and then exit - it takes no other actions. The intent here is to provide
* a last-ditch exit procedure that attempts to clean up a little.
*/
typedef int (*orte_errmgr_base_module_abort_fn_t)(int error_code, char *fmt, ...)
typedef void (*orte_errmgr_base_module_abort_fn_t)(int error_code, char *fmt, ...)
__opal_attribute_format_funcptr__(__printf__, 2, 3);
/**