1
1

- As in r21238, do not use printf %z for size_t...

This commit was SVN r21239.

The following SVN revision numbers were found above:
  r21238 --> open-mpi/ompi@b2f8095ba7
Этот коммит содержится в:
Rainer Keller 2009-05-14 14:11:31 +00:00
родитель b2f8095ba7
Коммит fc65875542

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

@ -130,8 +130,8 @@ static int local_copy_ddt_raw( ompi_datatype_t* pdt, int count, int iov_num )
printf( "raw extraction in %ld microsec\n", total_time ); printf( "raw extraction in %ld microsec\n", total_time );
OBJ_RELEASE( convertor ); OBJ_RELEASE( convertor );
if( remaining_length != 0 ) { if( remaining_length != 0 ) {
printf( "Not all raw description was been extracted (%zd bytes missing)\n", printf( "Not all raw description was been extracted (%lu bytes missing)\n",
remaining_length ); (unsigned long) remaining_length );
} }
return OMPI_SUCCESS; return OMPI_SUCCESS;
} }