summaryrefslogtreecommitdiffstats
path: root/src/H5Tenum.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/H5Tenum.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/H5Tenum.c')
-rw-r--r--src/H5Tenum.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Tenum.c b/src/H5Tenum.c
index 1055fc8..5ab6964 100644
--- a/src/H5Tenum.c
+++ b/src/H5Tenum.c
@@ -170,7 +170,7 @@ H5Tenum_insert(hid_t type, const char *name, const void *value)
herr_t ret_value=SUCCEED; /* Return value */
FUNC_ENTER_API(H5Tenum_insert, FAIL)
- H5TRACE3("e", "isx", type, name, value);
+ H5TRACE3("e", "i*s*x", type, name, value);
/* Check args */
if (NULL==(dt=H5I_object_verify(type,H5I_DATATYPE)))
@@ -363,7 +363,7 @@ H5Tenum_nameof(hid_t type, const void *value, char *name/*out*/, size_t size)
herr_t ret_value=SUCCEED; /* Return value */
FUNC_ENTER_API(H5Tenum_nameof, FAIL)
- H5TRACE4("e", "ixxz", type, value, name, size);
+ H5TRACE4("e", "i*xxz", type, value, name, size);
/* Check args */
if (NULL==(dt=H5I_object_verify(type,H5I_DATATYPE)))
@@ -503,7 +503,7 @@ H5Tenum_valueof(hid_t type, const char *name, void *value/*out*/)
herr_t ret_value=SUCCEED; /* Return value */
FUNC_ENTER_API(H5Tenum_valueof, FAIL)
- H5TRACE3("e", "isx", type, name, value);
+ H5TRACE3("e", "i*sx", type, name, value);
/* Check args */
if (NULL==(dt=H5I_object_verify(type,H5I_DATATYPE)))