From 74a31f9b8f93c1f9d5fc54b4e5519ef170e320d4 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Wed, 11 Jul 2007 14:37:39 +0000 Subject: [PATCH] src/H5Part.c - several implicit type conversions fixed --- src/H5Part.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/H5Part.c b/src/H5Part.c index bbca9cf..5158aae 100644 --- a/src/H5Part.c +++ b/src/H5Part.c @@ -688,7 +688,7 @@ H5PartWriteDataFloat64 ( ) { SET_FNAME ( "H5PartWriteDataFloat64" ); - herr_t herr; + h5part_int64_t herr; CHECK_FILEHANDLE ( f ); CHECK_WRITABLE_MODE( f ); @@ -735,7 +735,7 @@ H5PartWriteDataInt64 ( SET_FNAME ( "H5PartOpenWriteDataInt64" ); - herr_t herr; + h5part_int64_t herr; CHECK_FILEHANDLE ( f ); CHECK_WRITABLE_MODE( f ); @@ -880,7 +880,7 @@ _H5Part_get_attrib_info ( hid_t mytype; hid_t space_id; - attrib_id = H5Aopen_idx ( id, attrib_idx ); + attrib_id = H5Aopen_idx ( id, (unsigned int)attrib_idx ); if ( attrib_id < 0 ) return HANDLE_H5A_OPEN_IDX_ERR ( attrib_idx ); if ( attrib_nelem ) {