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/H5Tfixed.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/H5Tfixed.c')
-rw-r--r-- | src/H5Tfixed.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Tfixed.c b/src/H5Tfixed.c index 1d0817e..b43ea39 100644 --- a/src/H5Tfixed.c +++ b/src/H5Tfixed.c @@ -75,7 +75,7 @@ H5Tget_sign(hid_t type_id) H5T_sign_t ret_value; FUNC_ENTER_API(H5Tget_sign, H5T_SGN_ERROR) - H5TRACE1("Ts","i",type_id); + H5TRACE1("Ts", "i", type_id); /* Check args */ if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE))) @@ -154,7 +154,7 @@ H5Tset_sign(hid_t type_id, H5T_sign_t sign) herr_t ret_value=SUCCEED; /* Return value */ FUNC_ENTER_API(H5Tset_sign, FAIL) - H5TRACE2("e","iTs",type_id,sign); + H5TRACE2("e", "iTs", type_id, sign); /* Check args */ if (NULL == (dt = H5I_object_verify(type_id,H5I_DATATYPE))) |