? patch.txt Index: libsrc/XdmfDataDesc.cxx =================================================================== RCS file: /cvsroot/Xdmf/Xdmf/libsrc/XdmfDataDesc.cxx,v retrieving revision 1.22 diff -u -F^f -r1.22 XdmfDataDesc.cxx --- libsrc/XdmfDataDesc.cxx 25 Aug 2004 13:53:07 -0000 1.22 +++ libsrc/XdmfDataDesc.cxx 21 Apr 2005 18:53:17 -0000 @@ -303,7 +303,7 @@ for( i = 0 ; i < this->Rank ; i++ ) { this->SelectionType = XDMF_HYPERSLAB; status = H5Sselect_hyperslab( this->DataSpace, H5S_SELECT_SET, - this->Start, this->Stride, this->Count, + (const hsize_t *)this->Start, this->Stride, this->Count, NULL); if( status >= 0 ) { return( XDMF_SUCCESS ); @@ -333,7 +333,7 @@ for( i = 0 ; i < Length ; i++ ){ status = H5Sselect_elements( this->DataSpace, H5S_SELECT_SET, NElements, - ( const hssize_t **)HCoordinates); + ( const hsize_t **)HCoordinates); if( status < 0 ) { return( XDMF_FAIL ); }