From 5ea1b776f7cb481a9df58d30d8426eae40a50a5c Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Thu, 28 May 2009 13:32:37 +0000 Subject: [PATCH] Remove a compiler warning about an empty format string. The proper way to have no abort message is to pass NULL (the errmanager is smart enough to handle this case and not emit any extra message). This commit was SVN r21311. --- orte/mca/oob/tcp/oob_tcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orte/mca/oob/tcp/oob_tcp.c b/orte/mca/oob/tcp/oob_tcp.c index 9b8303900d..a570849351 100644 --- a/orte/mca/oob/tcp/oob_tcp.c +++ b/orte/mca/oob/tcp/oob_tcp.c @@ -518,7 +518,7 @@ static void mca_oob_tcp_accept(int incoming_sd) opal_output(0, "mca_oob_tcp_accept: accept() failed: %s (%d).", strerror(opal_socket_errno), opal_socket_errno); } - orte_errmgr.abort(ORTE_ERROR_DEFAULT_EXIT_CODE, ""); + orte_errmgr.abort(ORTE_ERROR_DEFAULT_EXIT_CODE, NULL); } return; }