[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
This commit is contained in:
Quincey Koziol
2003-07-10 14:45:44 -05:00
parent cf53e4aa24
commit dde2ff6776
2 changed files with 281 additions and 273 deletions

View File

@@ -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 */