1
1

Anything else than void* cannot be print with %p ...

This commit was SVN r9094.
Этот коммит содержится в:
George Bosilca 2006-02-19 16:34:15 +00:00
родитель a2a08b2282
Коммит 79be2dbcdb

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

@ -230,7 +230,7 @@ int32_t ompi_ddt_print_args( const ompi_datatype_t* pData )
if( temp->flags & DT_FLAG_PREDEFINED ) {
printf( "%s ", temp->name );
} else {
printf( "%p ", temp );
printf( "%p ", (void*)temp );
}
}
printf( "\n" );