From 0f8a80d81d02a3139dc1bbc34dd35582d45ab47c Mon Sep 17 00:00:00 2001 From: Rainer Keller Date: Fri, 8 Aug 2008 16:26:09 +0000 Subject: [PATCH] - The intel compiler does not play nice with the __opal_attribute_format__ on typedef defined functions and emits a warning once errmgr.h is included --> read: often... This commit was SVN r19229. --- orte/mca/errmgr/errmgr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orte/mca/errmgr/errmgr.h b/orte/mca/errmgr/errmgr.h index 28255ceb94..fd331652cd 100644 --- a/orte/mca/errmgr/errmgr.h +++ b/orte/mca/errmgr/errmgr.h @@ -132,7 +132,7 @@ typedef int (*orte_errmgr_base_module_register_cb_fn_t)(orte_jobid_t job, * 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 void (*orte_errmgr_base_module_abort_fn_t)(int error_code, char *fmt, ...) __opal_attribute_format__(__printf__, 2, 3) __opal_attribute_noreturn__; +typedef void (*orte_errmgr_base_module_abort_fn_t)(int error_code, char *fmt, ...) __opal_attribute_noreturn__; /* *