From b11d13cc05beb99a1cbc6bff84d9462fba408a4b Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Mon, 27 Oct 2008 14:23:02 +0000 Subject: [PATCH] Silence a trivial compiler warnings (pgcc). This commit was SVN r19810. --- orte/tools/orterun/debuggers.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/orte/tools/orterun/debuggers.c b/orte/tools/orterun/debuggers.c index 3c70e3e805..a7f8cec875 100644 --- a/orte/tools/orterun/debuggers.c +++ b/orte/tools/orterun/debuggers.c @@ -169,9 +169,11 @@ static void dump(void) MPIR_proctable[i].pid); } fprintf(stderr, "MPIR_executable_path: %s\n", - ('\0' == MPIR_executable_path[0]) ? "NULL" : MPIR_executable_path); + ('\0' == MPIR_executable_path[0]) ? + "NULL" : (char*) MPIR_executable_path); fprintf(stderr, "MPIR_server_arguments: %s\n", - ('\0' == MPIR_server_arguments[0]) ? "NULL" : MPIR_server_arguments); + ('\0' == MPIR_server_arguments[0]) ? + "NULL" : (char*) MPIR_server_arguments); }