summaryrefslogtreecommitdiffstats
path: root/src/H5I.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-01-14 13:09:42 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-01-14 13:09:42 (GMT)
commita365f0e6aabfa6a13b008e0263e6a2d6c86d5d7e (patch)
treea99fc3c171fc1fd0080f8ca9519e907450fba744 /src/H5I.c
parent84a14c0f25b52a9bba1e2be59051b18cb0317b15 (diff)
downloadhdf5-a365f0e6aabfa6a13b008e0263e6a2d6c86d5d7e.zip
hdf5-a365f0e6aabfa6a13b008e0263e6a2d6c86d5d7e.tar.gz
hdf5-a365f0e6aabfa6a13b008e0263e6a2d6c86d5d7e.tar.bz2
[svn-r16306] Description:
Bring r16305 back from revise_chunks branch: Add detection of C99 "designated initializers" to configure script and use new H5_HAVE_C99_DESIGNATED_INITIALIZER macro to conditionally compile default layout variables in src/H5Pdcpl.c Also, minor code cleanups, etc. Tested on: FreeBSD/32 6.3 (duty) in debug mode (Other platforms tested on branch)
Diffstat (limited to 'src/H5I.c')
-rw-r--r--src/H5I.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5I.c b/src/H5I.c
index b308712..c6fcb17 100644
--- a/src/H5I.c
+++ b/src/H5I.c
@@ -233,6 +233,7 @@ H5Iregister_type(size_t hash_size, unsigned reserved, H5I_free_t free_func)
H5I_type_t ret_value; /* Return value */
FUNC_ENTER_API(H5Iregister_type, H5I_BADID)
+ H5TRACE3("It", "zIux", hash_size, reserved, free_func);
/* Call H5I_register_type with a value of 0 to get a new type */
ret_value = H5I_register_type((H5I_type_t)0, hash_size, reserved, free_func);