diff options
-rw-r--r-- | src/H5F.c | 2 | ||||
-rw-r--r-- | src/H5public.h | 8 |
2 files changed, 5 insertions, 5 deletions
@@ -963,7 +963,7 @@ H5Fget_obj_count(hid_t file_id, unsigned types) int ret_value; /* Return value */ FUNC_ENTER_API(H5Fget_obj_count, FAIL); - H5TRACE2("e","iIu",file_id,types); + H5TRACE2("Is","iIu",file_id,types); if( file_id != H5F_OBJ_ALL && (NULL==(f=H5I_object_verify(file_id,H5I_FILE))) ) HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "not a file id"); diff --git a/src/H5public.h b/src/H5public.h index 2ebf466..65b8a28 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -74,11 +74,11 @@ extern "C" { /* Version numbers */ #define H5_VERS_MAJOR 1 /* For major interface/format changes */ -#define H5_VERS_MINOR 5 /* For minor interface/format changes */ -#define H5_VERS_RELEASE 63 /* For tweaks, bug-fixes, or development */ -#define H5_VERS_SUBRELEASE "" /* For pre-releases like snap0 */ +#define H5_VERS_MINOR 6 /* For minor interface/format changes */ +#define H5_VERS_RELEASE 0 /* For tweaks, bug-fixes, or development */ +#define H5_VERS_SUBRELEASE "pre1" /* For pre-releases like snap0 */ /* Empty string for real releases. */ -#define H5_VERS_INFO "HDF5 library version: 1.5.63" /* Full version string */ +#define H5_VERS_INFO "HDF5 library version: 1.6.0-pre1" /* Full version string */ #define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \ H5_VERS_RELEASE) |