summaryrefslogtreecommitdiffstats
path: root/src/H5R.c
diff options
context:
space:
mode:
authorMike McGreevy <mamcgree@hdfgroup.org>2007-03-08 16:57:36 (GMT)
committerMike McGreevy <mamcgree@hdfgroup.org>2007-03-08 16:57:36 (GMT)
commit2996c917afa9d8dc27ac0360d6e34cd637a513f6 (patch)
tree8c0676b2cf0db0b99cb229a411b25a540c8e38c9 /src/H5R.c
parent5a4bf8171df9473047d1eda534ed9a6a4d0749d9 (diff)
downloadhdf5-2996c917afa9d8dc27ac0360d6e34cd637a513f6.zip
hdf5-2996c917afa9d8dc27ac0360d6e34cd637a513f6.tar.gz
hdf5-2996c917afa9d8dc27ac0360d6e34cd637a513f6.tar.bz2
[svn-r13475] There's a configure issue linking szip's shared libraries when running on kagiso.
The static szip libraries are working as intended, but when shared szip libraries are present and intended for use they cannot be opened. A check has been implemented to test if shared szip libraries are functional on current platform. If they are not, and the user is trying to use them, szip is now disbaled and the user is informed. This issue occurs on kagiso, and the resolution was tested on kagiso.
Diffstat (limited to 'src/H5R.c')
-rw-r--r--src/H5R.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5R.c b/src/H5R.c
index b9040dd..64fb18c 100644
--- a/src/H5R.c
+++ b/src/H5R.c
@@ -288,7 +288,7 @@ H5Rcreate(void *ref, hid_t loc_id, const char *name, H5R_type_t ref_type, hid_t
herr_t ret_value; /* Return value */
FUNC_ENTER_API(H5Rcreate, FAIL)
- H5TRACE5("e", "xisRti", ref, loc_id, name, ref_type, space_id);
+ H5TRACE5("e", "*xi*sRti", ref, loc_id, name, ref_type, space_id);
/* Check args */
if(ref == NULL)
@@ -494,7 +494,7 @@ H5Rdereference(hid_t id, H5R_type_t ref_type, const void *_ref)
hid_t ret_value;
FUNC_ENTER_API(H5Rdereference, FAIL)
- H5TRACE3("i", "iRtx", id, ref_type, _ref);
+ H5TRACE3("i", "iRt*x", id, ref_type, _ref);
/* Check args */
if(H5G_loc(id, &loc) < 0)
@@ -617,7 +617,7 @@ H5Rget_region(hid_t id, H5R_type_t ref_type, const void *ref)
hid_t ret_value;
FUNC_ENTER_API(H5Rget_region, FAIL)
- H5TRACE3("i", "iRtx", id, ref_type, ref);
+ H5TRACE3("i", "iRt*x", id, ref_type, ref);
/* Check args */
if(H5G_loc(id, &loc) < 0)
@@ -764,7 +764,7 @@ H5Rget_obj_type(hid_t id, H5R_type_t ref_type, const void *ref)
H5G_obj_t ret_value;
FUNC_ENTER_API(H5Rget_obj_type, H5G_UNKNOWN)
- H5TRACE3("Go", "iRtx", id, ref_type, ref);
+ H5TRACE3("Go", "iRt*x", id, ref_type, ref);
/* Check args */
if(H5G_loc(id, &loc) < 0)
@@ -922,7 +922,7 @@ H5Rget_name(hid_t id, H5R_type_t ref_type, const void *_ref, char *name,
ssize_t ret_value; /* Return value */
FUNC_ENTER_API(H5Rget_name, FAIL)
- H5TRACE5("Zs", "iRtxsz", id, ref_type, _ref, name, size);
+ H5TRACE5("Zs", "iRt*x*sz", id, ref_type, _ref, name, size);
/* Check args */
if(H5G_loc(id, &loc) < 0)