diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2016-01-06 15:46:02 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2016-01-06 15:46:02 (GMT) |
commit | 48f7ad2df147d92851c6246155712f430a9f39f0 (patch) | |
tree | 8787ac2dcc5c56342b33ef7d65a16fa98dafb99a /src/H5B2pkg.h | |
parent | fb1525c2b2bb606a39fa6b2d2a50cfa4d3fee640 (diff) | |
download | hdf5-48f7ad2df147d92851c6246155712f430a9f39f0.zip hdf5-48f7ad2df147d92851c6246155712f430a9f39f0.tar.gz hdf5-48f7ad2df147d92851c6246155712f430a9f39f0.tar.bz2 |
[svn-r28811] Description:
Switch v2 B-tree min & max records to be void*'s to be cleaner and generate
less warnings.
Tested on:
Linux/32 2.6.x (jam) w/serial
MacOSX/64 10.11.2 (amazon) w/serial & parallel
Diffstat (limited to 'src/H5B2pkg.h')
-rw-r--r-- | src/H5B2pkg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5B2pkg.h b/src/H5B2pkg.h index d6b6c04..2b2c145 100644 --- a/src/H5B2pkg.h +++ b/src/H5B2pkg.h @@ -182,8 +182,8 @@ typedef struct H5B2_hdr_t { uint8_t *page; /* Common disk page for I/O */ size_t *nat_off; /* Array of offsets of native records */ H5B2_node_info_t *node_info; /* Table of node info structs for current depth of B-tree */ - uint8_t *min_native_rec; /* Pointer to minimum native record */ - uint8_t *max_native_rec; /* Pointer to maximum native record */ + void *min_native_rec; /* Pointer to minimum native record */ + void *max_native_rec; /* Pointer to maximum native record */ /* Client information (not stored) */ const H5B2_class_t *cls; /* Class of B-tree client */ |