diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2013-10-31 05:18:51 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2013-10-31 05:18:51 (GMT) |
commit | d6b116be67151d94428c588db29489b64187398f (patch) | |
tree | b554a666ac6c28ef8ea00f20d08191a81a969a51 | |
parent | 403d36479ac50b104713c1e38c9e112355569829 (diff) | |
download | hdf5-d6b116be67151d94428c588db29489b64187398f.zip hdf5-d6b116be67151d94428c588db29489b64187398f.tar.gz hdf5-d6b116be67151d94428c588db29489b64187398f.tar.bz2 |
[svn-r24377] - Added uint32_t to the list of traceable types.
- Fixed a couple of commenting typos in configure.ac.
Tested on: 32-bit LE linux (jam) w/ parallel and Fortran
These are minor changes, hence the limited testing.
-rwxr-xr-x | bin/trace | 1 | ||||
-rwxr-xr-x | configure | 6 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | src/H5Pdxpl.c | 2 |
4 files changed, 7 insertions, 6 deletions
@@ -62,6 +62,7 @@ $Source = ""; "int32_t" => "Is", "unsigned" => "Iu", "unsigned int" => "Iu", + "uint32_t" => "Iu", "H5I_type_t" => "It", "H5G_link_t" => "Ll", #Same as H5L_type_t now "H5L_type_t" => "Ll", @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.ac Id: configure.ac 24288 2013-10-14 00:37:42Z hdftest . +# From configure.ac Id: configure.ac 24335 2013-10-21 00:42:45Z hdftest . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for HDF5 1.8.13-snap2. # @@ -30811,7 +30811,7 @@ if test -n "$cc_version_info"; then fi -## Strip anything that looks like a flag off of $CC +## Strip anything that looks like a flag off of $FC FC_NOFLAGS=`echo $FC | sed 's/ -.*//'` if `echo $FC_NOFLAGS | grep ^/ >/dev/null 2>&1`; then @@ -30830,7 +30830,7 @@ if test -n "$fc_version_info"; then fi -## Strip anything that looks like a flag off of $CC +## Strip anything that looks like a flag off of $CXX CXX_NOFLAGS=`echo $CXX | sed 's/ -.*//'` if `echo $CXX_NOFLAGS | grep ^/ >/dev/null 2>&1`; then diff --git a/configure.ac b/configure.ac index 5ad6412..ce47ebf 100644 --- a/configure.ac +++ b/configure.ac @@ -4110,7 +4110,7 @@ if test -n "$cc_version_info"; then fi AC_SUBST([FC_VERSION]) -## Strip anything that looks like a flag off of $CC +## Strip anything that looks like a flag off of $FC FC_NOFLAGS=`echo $FC | sed 's/ -.*//'` if `echo $FC_NOFLAGS | grep ^/ >/dev/null 2>&1`; then @@ -4129,7 +4129,7 @@ if test -n "$fc_version_info"; then fi AC_SUBST([CXX_VERSION]) -## Strip anything that looks like a flag off of $CC +## Strip anything that looks like a flag off of $CXX CXX_NOFLAGS=`echo $CXX | sed 's/ -.*//'` if `echo $CXX_NOFLAGS | grep ^/ >/dev/null 2>&1`; then diff --git a/src/H5Pdxpl.c b/src/H5Pdxpl.c index 30d13bb..b142e22 100644 --- a/src/H5Pdxpl.c +++ b/src/H5Pdxpl.c @@ -1422,7 +1422,7 @@ H5Pget_mpio_no_collective_cause(hid_t plist_id, uint32_t *local_no_collective_ca herr_t ret_value = SUCCEED; /* return value */ FUNC_ENTER_API(FAIL) - H5TRACE3("e", "i*Dn*Dn", plist_id, local_no_collective_cause, + H5TRACE3("e", "i*Iu*Iu", plist_id, local_no_collective_cause, global_no_collective_cause); /* Get the plist structure */ |