summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHDF Tester <hdftest@hdfgroup.org>2008-09-28 22:50:03 (GMT)
committerHDF Tester <hdftest@hdfgroup.org>2008-09-28 22:50:03 (GMT)
commit993baa185a62d1a7c6a676d54762102683cee333 (patch)
treec4a6bc7195222632e80dc2bcf6ac52cda85af800 /src
parentebd7c384e0cb4b8cc344b0df42f1c050bbc91140 (diff)
downloadhdf5-993baa185a62d1a7c6a676d54762102683cee333.zip
hdf5-993baa185a62d1a7c6a676d54762102683cee333.tar.gz
hdf5-993baa185a62d1a7c6a676d54762102683cee333.tar.bz2
[svn-r15715] Snapshot version 1.8 release 1 (snap5)
Diffstat (limited to 'src')
-rw-r--r--src/H5F.c4
-rw-r--r--src/H5public.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/H5F.c b/src/H5F.c
index 5c0747d..083adcc 100644
--- a/src/H5F.c
+++ b/src/H5F.c
@@ -385,7 +385,7 @@ H5Fget_obj_count(hid_t file_id, unsigned types)
ssize_t ret_value; /* Return value */
FUNC_ENTER_API(H5Fget_obj_count, FAIL)
- H5TRACE2("Is", "iIu", file_id, types);
+ H5TRACE2("Zs", "iIu", file_id, types);
if(file_id != (hid_t)H5F_OBJ_ALL && (NULL == (f = (H5F_t *)H5I_object_verify(file_id, H5I_FILE))))
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "not a file id")
@@ -458,7 +458,7 @@ H5Fget_obj_ids(hid_t file_id, unsigned types, size_t max_objs, hid_t *oid_list)
ssize_t ret_value; /* Return value */
FUNC_ENTER_API(H5Fget_obj_ids, FAIL)
- H5TRACE4("e", "iIuIs*i", file_id, types, max_objs, oid_list);
+ H5TRACE4("Zs", "iIuz*i", file_id, types, max_objs, oid_list);
if(file_id != (hid_t)H5F_OBJ_ALL && (NULL == (f = (H5F_t *)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 c7a5cc1..67b3ac4 100644
--- a/src/H5public.h
+++ b/src/H5public.h
@@ -72,9 +72,9 @@ extern "C" {
#define H5_VERS_MAJOR 1 /* For major interface/format changes */
#define H5_VERS_MINOR 8 /* For minor interface/format changes */
#define H5_VERS_RELEASE 1 /* For tweaks, bug-fixes, or development */
-#define H5_VERS_SUBRELEASE "snap5" /* For pre-releases like snap0 */
+#define H5_VERS_SUBRELEASE "snap6" /* For pre-releases like snap0 */
/* Empty string for real releases. */
-#define H5_VERS_INFO "HDF5 library version: 1.8.1-snap5" /* Full version string */
+#define H5_VERS_INFO "HDF5 library version: 1.8.1-snap6" /* Full version string */
#define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \
H5_VERS_RELEASE)