summaryrefslogtreecommitdiffstats
path: root/src/H5Dprivate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Dprivate.h')
-rw-r--r--src/H5Dprivate.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Dprivate.h b/src/H5Dprivate.h
index ebf0f80..2ed8f1e 100644
--- a/src/H5Dprivate.h
+++ b/src/H5Dprivate.h
@@ -44,7 +44,7 @@
/* Dataset creation property list */
typedef struct H5D_create_t {
H5D_layout_t layout; /*storage layout */
- intn chunk_ndims; /*chunk dimensionality */
+ int chunk_ndims; /*chunk dimensionality */
hsize_t chunk_size[32]; /*chunk size if chunked storage */
H5O_fill_t fill; /*fill value */
H5O_efl_t efl; /*external file list */
@@ -58,8 +58,8 @@ typedef struct H5D_xfer_t {
void *bkg_buf; /*background buffer or null */
H5T_bkg_t need_bkg; /*type of background buffer needed */
double split_ratios[3];/*B-tree node splitting ratios */
- uintn cache_hyper; /*cache hyperslab blocks during I/O? */
- uintn block_limit; /*largest hyperslab block to cache */
+ unsigned cache_hyper; /*cache hyperslab blocks during I/O? */
+ unsigned block_limit; /*largest hyperslab block to cache */
H5MM_allocate_t vlen_alloc; /*VL datatype allocation function */
void *alloc_info; /*VL datatype allocation information */
H5MM_free_t vlen_free; /*VL datatype free function */
@@ -67,7 +67,7 @@ typedef struct H5D_xfer_t {
hid_t driver_id; /*File driver ID */
void *driver_info; /*File driver specific information */
#ifdef COALESCE_READS
- uintn gather_reads; /*coalesce single reads into a read */
+ unsigned gather_reads; /*coalesce single reads into a read */
/*transaction */
#endif
} H5D_xfer_t;