From 3e4028de8411ff26449fd15d1d8fde7597133ae9 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Fri, 14 Aug 2009 13:10:18 +0000 Subject: [PATCH] some type cast warning fixed --- src/H5Part.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/H5Part.c b/src/H5Part.c index d9160e8..2bad3a5 100644 --- a/src/H5Part.c +++ b/src/H5Part.c @@ -349,7 +349,7 @@ H5PartWriteStepAttrib ( f, f->step_gid, attrib_name, - (const hid_t)attrib_type, + (hid_t)attrib_type, attrib_value, attrib_nelem ); } @@ -391,7 +391,7 @@ H5PartWriteFileAttrib ( f, f->root_gid, attrib_name, - (const hid_t)attrib_type, + (hid_t)attrib_type, attrib_value, attrib_nelem ); }