1
1

Fix comment to match the code.

This commit was SVN r19598.
Этот коммит содержится в:
Jeff Squyres 2008-09-20 12:35:48 +00:00
родитель 02f2cbe85a
Коммит 8eccda391a

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

@ -406,15 +406,12 @@ int orte_show_help(const char *filename, const char *topic,
if (!ready) { if (!ready) {
/* if we are finalizing, then we have no way to process /* if we are finalizing, then we have no way to process
* this through the orte_show_help system - just drop it to * this through the orte_show_help system - just drop it to
* opal_show_help for handling * stderr; that's at least better than not showing it.
* *
* If we are not finalizing, then this is probably a show_help * If we are not finalizing, then this is probably a show_help
* stemming from either a cmd-line request to display the usage * stemming from either a cmd-line request to display the usage
* message, or a show_help related to a user error. In either case, * message, or a show_help related to a user error. In either case,
* we can't do anything but just call opal_show_help * we can't do anything but just print to stderr.
*
* Ensure we suppress the opal_output warnings for this case, then
* re-enable them when we are done
*/ */
fprintf(stderr, "%s", output); fprintf(stderr, "%s", output);
goto CLEANUP; goto CLEANUP;