From c6d2e03cdd5008b94bb5af30bdfd0e41c76577dc Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Wed, 25 Jul 2007 03:50:35 +0000 Subject: [PATCH] Correct the prototype for non GNU compilers. This commit was SVN r15598. --- ompi/mca/pml/v/pml_v.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ompi/mca/pml/v/pml_v.h b/ompi/mca/pml/v/pml_v.h index 6da387b656..55038d3d18 100644 --- a/ompi/mca/pml/v/pml_v.h +++ b/ompi/mca/pml/v/pml_v.h @@ -25,7 +25,7 @@ extern "C" { # define V_OUTPUT_VERBOSE(V, ...) OPAL_OUTPUT_VERBOSE((V, mca_pml_v.output, __VA_ARGS__)) #else static inline void V_OUTPUT(char *format, ...) { OPAL_OUTPUT((mca_pml_v.output, "%s", format)); } -static inline void V_OUTPUT_VERBOSE(V, char * format, ...) {OPAL_OUTPUT_VERBOSE((V, mca_pml_v.output, "%s", format)); } +static inline void V_OUTPUT_VERBOSE(int V, char * format, ...) {OPAL_OUTPUT_VERBOSE((V, mca_pml_v.output, "%s", format)); } #endif struct mca_pml_v_t {