diff options
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"); |