1
1

Correct the output global variables.

This commit was SVN r20745.
Этот коммит содержится в:
Shiqing Fan 2009-03-06 15:31:12 +00:00
родитель a8cb7d2ab1
Коммит ddc82f3831
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -44,7 +44,7 @@
#include "opal/threads/condition.h" #include "opal/threads/condition.h"
#include "opal/event/event.h" #include "opal/event/event.h"
#include "opal/util/argv.h" #include "opal/util/argv.h"
#include "opal/util/output.h" #include "opal/util/output.h"
#include "opal/util/opal_environ.h" #include "opal/util/opal_environ.h"
#include "opal/util/path.h" #include "opal/util/path.h"
#include "opal/util/basename.h" #include "opal/util/basename.h"

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

@ -23,7 +23,7 @@
#include <string.h> #include <string.h>
#include "opal/util/argv.h" #include "opal/util/argv.h"
#include "opal/util/output.h" #include "opal/util/output.h"
#include "orte/util/show_help.h" #include "orte/util/show_help.h"
#include "opal/util/os_path.h" #include "opal/util/os_path.h"
@ -331,12 +331,12 @@ void ras_get_cluster_message(ICluster* pCluster)
hr = pCluster->get_ErrorMessage(&message); hr = pCluster->get_ErrorMessage(&message);
if (SUCCEEDED(hr)) { if (SUCCEEDED(hr)) {
OPAL_OUTPUT_VERBOSE((1, orte_plm_globals.output, OPAL_OUTPUT_VERBOSE((1, orte_ras_base.ras_output,
_com_util::ConvertBSTRToString(message))); _com_util::ConvertBSTRToString(message)));
SysFreeString(message); SysFreeString(message);
} }
else { else {
OPAL_OUTPUT_VERBOSE((1, orte_plm_globals.output, OPAL_OUTPUT_VERBOSE((1, orte_ras_base.ras_output,
"pCluster->get_ErrorMessage failed.\n")); "pCluster->get_ErrorMessage failed.\n"));
} }
} }