diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-07-10 19:45:44 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-07-10 19:45:44 (GMT) |
commit | dde2ff6776e4e32ea00cd450246a43e94897dbb7 (patch) | |
tree | 48d4c7e79fd301df782045550aa0869d0ef4d721 /src/H5Bpkg.h | |
parent | cf53e4aa2402cf6361581ea22a0d505deb2ceccb (diff) | |
download | hdf5-dde2ff6776e4e32ea00cd450246a43e94897dbb7.zip hdf5-dde2ff6776e4e32ea00cd450246a43e94897dbb7.tar.gz hdf5-dde2ff6776e4e32ea00cd450246a43e94897dbb7.tar.bz2 |
[svn-r7204] Purpose:
Code cleanup
Description:
Tail end of B-tree 'K' value conversion to unsigned ints.
Also, lots of misc. code cleanups suggested by lint tool
Platforms tested:
FreeBSD 4.8 (sleipnir)
h5committest
Diffstat (limited to 'src/H5Bpkg.h')
-rw-r--r-- | src/H5Bpkg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Bpkg.h b/src/H5Bpkg.h index 707285d..6e28d93 100644 --- a/src/H5Bpkg.h +++ b/src/H5Bpkg.h @@ -54,11 +54,11 @@ struct H5B_t { /* first field in structure */ const H5B_class_t *type; /*type of tree */ size_t sizeof_rkey; /*size of raw (disk) key */ - int ndirty; /*num child ptrs to emit */ + unsigned ndirty; /*num child ptrs to emit */ int level; /*node level */ haddr_t left; /*address of left sibling */ haddr_t right; /*address of right sibling */ - int nchildren; /*number of child pointers */ + unsigned nchildren; /*number of child pointers */ uint8_t *page; /*disk page */ uint8_t *native; /*array of keys in native format */ H5B_key_t *key; /*2k+1 key entries */ |