From 747f23099e2c2064438c5f9aadf8836c0de4b78c Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Thu, 28 Jul 2005 19:25:47 +0000 Subject: [PATCH] * fix some warnings This commit was SVN r6661. --- orte/mca/gpr/null/gpr_null_component.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/orte/mca/gpr/null/gpr_null_component.c b/orte/mca/gpr/null/gpr_null_component.c index 027f7e2050..a047be922c 100644 --- a/orte/mca/gpr/null/gpr_null_component.c +++ b/orte/mca/gpr/null/gpr_null_component.c @@ -23,20 +23,20 @@ extern orte_gpr_base_module_t orte_gpr_null_module; -int +static int orte_gpr_null_open(void) { return ORTE_SUCCESS; } -int +static int orte_gpr_null_close(void) { return ORTE_SUCCESS; } -orte_gpr_base_module_t * +static orte_gpr_base_module_t * orte_gpr_null_init(bool *allow_multi_user_threads, bool *have_hidden_threads, int *priority) @@ -45,7 +45,7 @@ orte_gpr_null_init(bool *allow_multi_user_threads, return &orte_gpr_null_module; } -int +static int orte_gpr_null_finalize(void) { return ORTE_SUCCESS;