diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-30 22:27:44 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-30 22:27:44 (GMT) |
commit | 119f3f86f9809946c8f40ab39f9cf6f4770f2694 (patch) | |
tree | eb54044bc72bf37f7fc5187957b3c1a0bbd87d9a /src/H5B.c | |
parent | 9e9c406effc1e3c156a311493b165bcc9a2ac38e (diff) | |
download | hdf5-119f3f86f9809946c8f40ab39f9cf6f4770f2694.zip hdf5-119f3f86f9809946c8f40ab39f9cf6f4770f2694.tar.gz hdf5-119f3f86f9809946c8f40ab39f9cf6f4770f2694.tar.bz2 |
[svn-r3877] Purpose:
Update
Description:
On further discussion with Albert and Quncey, it was decided to keep
the original "unsignedness" of the nkeys variable.
Solution:
Changed the type from intn to uintn.
Platforms tested:
Linux
Diffstat (limited to 'src/H5B.c')
-rw-r--r-- | src/H5B.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2054,7 +2054,7 @@ H5B_copy(H5F_t *f, const H5B_t *old_bt) H5B_t *ret_value = NULL; hsize_t total_native_keysize; hsize_t size; - intn nkeys; + uintn nkeys; uintn u; FUNC_ENTER(H5B_copy, NULL); |