diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2000-09-06 21:15:35 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2000-09-06 21:15:35 (GMT) |
commit | 61e517a4b001c0d5581d9e5cf91b66a39ee16772 (patch) | |
tree | 933cec141de011b0d04b56a95e48673e4d04b7f5 /src | |
parent | c0ec9f92a66088fadc2cae40e8e3c5dad9a76e16 (diff) | |
download | hdf5-61e517a4b001c0d5581d9e5cf91b66a39ee16772.zip hdf5-61e517a4b001c0d5581d9e5cf91b66a39ee16772.tar.gz hdf5-61e517a4b001c0d5581d9e5cf91b66a39ee16772.tar.bz2 |
[svn-r2519] Snapshot version 1.3 release 29
Diffstat (limited to 'src')
-rw-r--r-- | src/H5P.c | 2 | ||||
-rw-r--r-- | src/H5public.h | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -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. */ |