summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2000-09-06 21:15:35 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2000-09-06 21:15:35 (GMT)
commit61e517a4b001c0d5581d9e5cf91b66a39ee16772 (patch)
tree933cec141de011b0d04b56a95e48673e4d04b7f5
parentc0ec9f92a66088fadc2cae40e8e3c5dad9a76e16 (diff)
downloadhdf5-61e517a4b001c0d5581d9e5cf91b66a39ee16772.zip
hdf5-61e517a4b001c0d5581d9e5cf91b66a39ee16772.tar.gz
hdf5-61e517a4b001c0d5581d9e5cf91b66a39ee16772.tar.bz2
[svn-r2519] Snapshot version 1.3 release 29
-rw-r--r--README2
-rw-r--r--src/H5P.c2
-rw-r--r--src/H5public.h2
3 files changed, 4 insertions, 2 deletions
diff --git a/README b/README
index 8f384a7..2213377 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-This is hdf5-1.3.29 currently under development
+This is hdf5-1.3.30 currently under development
Please refer to the INSTALL file for installation instructions.
------------------------------------------------------------------------------
diff --git a/src/H5P.c b/src/H5P.c
index c60ad6c..468cca2 100644
--- a/src/H5P.c
+++ b/src/H5P.c
@@ -2937,6 +2937,7 @@ H5Pset_meta_block_size(hid_t fapl_id, hsize_t size)
H5F_access_t *fapl = NULL;
FUNC_ENTER (H5Pset_meta_block_size, FAIL);
+ H5TRACE2("e","ih",fapl_id,size);
/* Check args */
if (H5P_FILE_ACCESS != H5P_get_class (fapl_id) ||
@@ -2973,6 +2974,7 @@ H5Pget_meta_block_size(hid_t fapl_id, hsize_t *size/*out*/)
H5F_access_t *fapl = NULL;
FUNC_ENTER (H5Pget_meta_block_size, FAIL);
+ H5TRACE2("e","ix",fapl_id,size);
/* Check args */
if (H5P_FILE_ACCESS != H5P_get_class (fapl_id) ||
diff --git a/src/H5public.h b/src/H5public.h
index d6a1fec..a48a309 100644
--- a/src/H5public.h
+++ b/src/H5public.h
@@ -56,7 +56,7 @@ static char RcsId[] = "@(#)$Revision$";
/* Version numbers */
#define H5_VERS_MAJOR 1 /* For major interface/format changes */
#define H5_VERS_MINOR 3 /* For minor interface/format changes */
-#define H5_VERS_RELEASE 29 /* For tweaks, bug-fixes, or development */
+#define H5_VERS_RELEASE 30 /* For tweaks, bug-fixes, or development */
#define H5_VERS_SUBRELEASE "" /* For pre-releases like snap0 */
/* Empty string for real releases. */