diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-10-16 18:19:06 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-10-16 18:19:06 (GMT) |
commit | cdbb523b940f70c160402a32f236f7e8121aabf9 (patch) | |
tree | 2e14fc6e545d027bc4a2c612cb8f215bde93c32d /src/H5Gpkg.h | |
parent | 8f0acc169782d33d3519d321c4da3adbf93cd4d2 (diff) | |
download | hdf5-cdbb523b940f70c160402a32f236f7e8121aabf9.zip hdf5-cdbb523b940f70c160402a32f236f7e8121aabf9.tar.gz hdf5-cdbb523b940f70c160402a32f236f7e8121aabf9.tar.bz2 |
[svn-r4548] Purpose:
Code cleanup.
Description:
Fix a few compiler warnings from the file creation property list -> generic
property list conversion. Also change a hard-wired value (8) for the
number of B-tree key values to a value that uses the enum's generated by
the compiler.
Platforms tested:
FreeBSD 4.4 (hawkwind)
Diffstat (limited to 'src/H5Gpkg.h')
-rw-r--r-- | src/H5Gpkg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Gpkg.h b/src/H5Gpkg.h index 1c70e7b..43409ba 100644 --- a/src/H5Gpkg.h +++ b/src/H5Gpkg.h @@ -138,6 +138,6 @@ __DLL__ herr_t H5G_ent_decode_vec(H5F_t *f, const uint8_t **pp, __DLL__ herr_t H5G_ent_encode_vec(H5F_t *f, uint8_t **pp, const H5G_entry_t *ent, int n); -__DLL__ unsigned H5G_node_k(H5F_t *f); +__DLL__ unsigned H5G_node_k(const H5F_t *f); #endif |