1
1

Fix some typing mistakes, make the sources compile again for Windows Visual Studio.

This commit was SVN r18542.
Этот коммит содержится в:
Shiqing Fan 2008-05-29 15:27:43 +00:00
родитель b67a1244b6
Коммит af656b2b3d
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -149,14 +149,14 @@ static int orte_plm_ccp_component_query(mca_base_module_t **module, int *priorit
if (FAILED(hr)) {
/* We are not Windows clusters, don't select us.*/
*module = NULL;
return ORTE_ERROR:
return ORTE_ERROR;
}
/* if we are NOT an HNP, then don't select us */
if (!orte_process_info.hnp) {
pCluster->Release();
*module = NULL;
return ORTE_ERROR:
return ORTE_ERROR;
}
/* We are Windows clusters and this is HNP. */

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

@ -89,7 +89,7 @@ static int ras_ccp_open(void)
return ORTE_SUCCESS;
}
static int orte_ras_ccp_component_query(mca_base_module_t **module, int *priority);
static int orte_ras_ccp_component_query(mca_base_module_t **module, int *priority)
{
int rc;
ICluster* pCluster = NULL;