diff options
author | James Laird <jlaird@hdfgroup.org> | 2006-12-18 19:16:17 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2006-12-18 19:16:17 (GMT) |
commit | e100695eb0c207e9087696ccd3ca923b2ff248e2 (patch) | |
tree | 3b0a7b88619faf50bce86d316c7384f7ad1218da /src/H5I.c | |
parent | ddbc06fce64bc49ff6b3e83da3ff74d08251fc2c (diff) | |
download | hdf5-e100695eb0c207e9087696ccd3ca923b2ff248e2.zip hdf5-e100695eb0c207e9087696ccd3ca923b2ff248e2.tar.gz hdf5-e100695eb0c207e9087696ccd3ca923b2ff248e2.tar.bz2 |
[svn-r13068] Ran bin/reconfigure. Some of the scripts have been changed or haven't
been run in a while, so many of the source files were updated with
tracing macros, etc. No code changes by me.
Tested on kagiso and smirom.
Diffstat (limited to 'src/H5I.c')
-rw-r--r-- | src/H5I.c | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -1075,7 +1075,7 @@ H5Iget_type(hid_t id) H5I_type_t ret_value = H5I_BADID; FUNC_ENTER_API(H5Iget_type, H5I_BADID); - H5TRACE1("It","i",id); + H5TRACE1("It", "i", id); ret_value = H5I_get_type(id); @@ -1260,7 +1260,7 @@ H5Idec_ref(hid_t id) int ret_value; /* Return value */ FUNC_ENTER_API(H5Idec_ref, FAIL); - H5TRACE1("Is","i",id); + H5TRACE1("Is", "i", id); /* Check arguments */ if (id<0) @@ -1385,7 +1385,7 @@ H5Iinc_ref(hid_t id) int ret_value; /* Return value */ FUNC_ENTER_API(H5Iinc_ref, FAIL); - H5TRACE1("Is","i",id); + H5TRACE1("Is", "i", id); /* Check arguments */ if (id<0) @@ -1470,7 +1470,7 @@ H5Iget_ref(hid_t id) int ret_value; /* Return value */ FUNC_ENTER_API(H5Iget_ref, FAIL); - H5TRACE1("Is","i",id); + H5TRACE1("Is", "i", id); /* Check arguments */ if (id<0) @@ -1556,7 +1556,7 @@ H5Iinc_type_ref(H5I_type_t type) int ret_value; /* Return value */ FUNC_ENTER_API(H5Iinc_type_ref, FAIL); - H5TRACE1("Is","It",type); + H5TRACE1("Is", "It", type); /* Check arguments */ if (type<=0 || type >= H5I_next_type) @@ -1743,7 +1743,7 @@ H5Iget_type_ref(H5I_type_t type) int ret_value; /* Return value */ FUNC_ENTER_API(H5Iget_type_ref, FAIL); - H5TRACE1("Is","It",type); + H5TRACE1("Is", "It", type); /* Check arguments */ if (type<=0 || type >= H5I_next_type) @@ -1999,7 +1999,7 @@ H5Iget_name(hid_t id, char *name/*out*/, size_t size) ssize_t ret_value; FUNC_ENTER_API(H5Iget_name, FAIL) - H5TRACE3("Zs","ixz",id,name,size); + H5TRACE3("Zs", "ixz", id, name, size); /* Call internal group routine to retrieve object's name */ if((ret_value = H5G_get_name(id, name, size, H5AC_ind_dxpl_id)) < 0) @@ -2033,7 +2033,7 @@ H5Iget_file_id(hid_t obj_id) hid_t ret_value; FUNC_ENTER_API(H5Iget_file_id, FAIL); - H5TRACE1("i","i",obj_id); + H5TRACE1("i", "i", obj_id); if((ret_value = H5I_get_file_id(obj_id))<0) HGOTO_ERROR (H5E_ATOM, H5E_CANTGET, FAIL, "can't retrieve file ID"); |