summaryrefslogtreecommitdiffstats
path: root/src/H5Pprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-11-15 02:27:03 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-11-15 02:27:03 (GMT)
commitd6b0ddc5e79dcd87b6a708a333afd77566803420 (patch)
treec659e7448d425adfdab98392a90a477b602b0381 /src/H5Pprivate.h
parentf1410eb0993f4ee52608158cc7710a8752273bc6 (diff)
downloadhdf5-d6b0ddc5e79dcd87b6a708a333afd77566803420.zip
hdf5-d6b0ddc5e79dcd87b6a708a333afd77566803420.tar.gz
hdf5-d6b0ddc5e79dcd87b6a708a333afd77566803420.tar.bz2
[svn-r2909] Purpose:
Code checkpoint Description: More generic property functionality added and debugged. Platforms tested: FreeBSD 4.1.1 (hawkwind)
Diffstat (limited to 'src/H5Pprivate.h')
-rw-r--r--src/H5Pprivate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Pprivate.h b/src/H5Pprivate.h
index c60adc3..38ae95f 100644
--- a/src/H5Pprivate.h
+++ b/src/H5Pprivate.h
@@ -58,7 +58,7 @@ typedef struct H5P_genprop_tag {
typedef struct H5P_genclass_tag {
struct H5P_genclass_tag *parent; /* Pointer to parent class */
char *name; /* Name of property list class */
- uintn nprops; /* Number of properties in class */
+ size_t nprops; /* Number of properties in class */
uintn hashsize; /* Hash table size */
uintn plists; /* Number of property lists that have been created since the last modification to the class */
uintn classes; /* Number of classes that have been derived since the last modification to the class */
@@ -78,7 +78,7 @@ typedef struct H5P_genclass_tag {
/* Define structure to hold property list information */
typedef struct H5P_genplist_tag {
H5P_genclass_t *pclass; /* Pointer to class info */
- uintn nprops; /* Number of properties in class */
+ size_t nprops; /* Number of properties in class */
uintn class_init:1; /* Whether the class initialization callback finished successfully */
/* Hash size for a property list is same as class */