[MOAB-dev] r1669 - MOAB/trunk/mhdf/src

kraftche at mcs.anl.gov kraftche at mcs.anl.gov
Mon Mar 17 12:09:49 CDT 2008


Author: kraftche
Date: 2008-03-17 12:09:49 -0500 (Mon, 17 Mar 2008)
New Revision: 1669

Modified:
   MOAB/trunk/mhdf/src/tags.c
Log:
fix bug in reader when built against 1.6.* of the HDF5 library

Modified: MOAB/trunk/mhdf/src/tags.c
===================================================================
--- MOAB/trunk/mhdf/src/tags.c	2008-03-14 20:42:13 UTC (rev 1668)
+++ MOAB/trunk/mhdf/src/tags.c	2008-03-17 17:09:49 UTC (rev 1669)
@@ -880,6 +880,7 @@
 #if defined(H5Topen_vers) && H5Topen_vers > 1  
   type_id = H5Topen2( tag_id, TAG_TYPE_NAME, H5P_DEFAULT );
 #else
+  type_id = H5Topen( tag_id, TAG_TYPE_NAME );
 #endif
   if (type_id < 0)
   {




More information about the moab-dev mailing list