diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2008-05-19 04:47:38 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2008-05-19 04:47:38 (GMT) |
commit | 90b94c00fecc7f9ce603d868d4adfa5bc5a05831 (patch) | |
tree | 905c88b48827bc7c7a1cd56ccfbc5bdf6572b267 /src/H5Znbit.c | |
parent | feab08a0eeb4ac38c38b12fc0f43a15540d22cee (diff) | |
download | hdf5-90b94c00fecc7f9ce603d868d4adfa5bc5a05831.zip hdf5-90b94c00fecc7f9ce603d868d4adfa5bc5a05831.tar.gz hdf5-90b94c00fecc7f9ce603d868d4adfa5bc5a05831.tar.bz2 |
[svn-r15035] Description:
Backport revision 15034 from trunk:
Correct another case of using 'size_t' for chunk sizes where 'uint32_t'
was necessary.
Tested on:
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN
Diffstat (limited to 'src/H5Znbit.c')
-rw-r--r-- | src/H5Znbit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Znbit.c b/src/H5Znbit.c index 1b9265d..2423654 100644 --- a/src/H5Znbit.c +++ b/src/H5Znbit.c @@ -439,7 +439,7 @@ H5Z_set_parms_atomic(const H5T_t *type, unsigned cd_values[]) int dtype_offset; /* Atomic datatype's offset (in bits) */ herr_t ret_value = SUCCEED; /* Return value */ - FUNC_ENTER_NOAPI(H5Z_set_parms_atomic, FAIL) + FUNC_ENTER_NOAPI_NOINIT(H5Z_set_parms_atomic) /* Set datatype class code */ cd_values[cd_values_index++] = H5Z_NBIT_ATOMIC; @@ -799,6 +799,7 @@ H5Z_set_local_nbit(hid_t dcpl_id, hid_t type_id, hid_t space_id) /* Get total number of elements in the chunk */ if((npoints = H5S_GET_EXTENT_NPOINTS(ds)) < 0) HGOTO_ERROR(H5E_PLINE, H5E_CANTGET, FAIL, "unable to get number of points in the dataspace") + HDassert(npoints); /* Initialize index for cd_values array starting from the third entry */ cd_values_index = 2; |