1
1

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.
Этот коммит содержится в:
Jeff Squyres 2009-05-28 13:32:37 +00:00
родитель 1834fc4ac6
Коммит 5ea1b776f7

Просмотреть файл

@ -518,7 +518,7 @@ static void mca_oob_tcp_accept(int incoming_sd)
opal_output(0, "mca_oob_tcp_accept: accept() failed: %s (%d).", opal_output(0, "mca_oob_tcp_accept: accept() failed: %s (%d).",
strerror(opal_socket_errno), opal_socket_errno); 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; return;
} }