1
1

Fix warnings when building with UDAPL - minor formatting errors.

This commit was SVN r13971.
Этот коммит содержится в:
Bill D'Amico 2007-03-08 18:39:40 +00:00
родитель b94a39236b
Коммит 53d434d6ab
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -679,7 +679,7 @@ int mca_btl_udapl_component_progress()
/* Was the DTO successful? */
if(DAT_DTO_SUCCESS != dto->status) {
OPAL_OUTPUT((0,
"btl_udapl ***** DTO error %d %d %d %p*****\n",
"btl_udapl ***** DTO error %d %d %u %p*****\n",
dto->status, frag->type, frag->size, dto->ep_handle));
break;
}

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

@ -129,14 +129,14 @@ mca_btl_udapl_proc_t* mca_btl_udapl_proc_create(ompi_proc_t* ompi_proc)
(void*)&udapl_proc->proc_addrs,
&size);
if(OMPI_SUCCESS != rc) {
opal_output(0, "[%s:%d] mca_pml_base_modex_recv failed for peer [%d,%d,%d]",
opal_output(0, "[%s:%d] mca_pml_base_modex_recv failed for peer [%lu,%lu,%lu]",
__FILE__,__LINE__,ORTE_NAME_ARGS(&ompi_proc->proc_name));
OBJ_RELEASE(udapl_proc);
return NULL;
}
if((size % sizeof(mca_btl_udapl_addr_t)) != 0) {
opal_output(0, "[%s:%d] invalid udapl address for peer [%d,%d,%d]",
opal_output(0, "[%s:%d] invalid udapl address for peer [%lu,%lu,%lu]",
__FILE__,__LINE__,ORTE_NAME_ARGS(&ompi_proc->proc_name));
OBJ_RELEASE(udapl_proc);
return NULL;