Skip to content

Commit

Permalink
correct declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF committed Sep 18, 2023
1 parent d19d7b9 commit 87af555
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions C/H5D/h5ex_d_chunk.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ main(void)
hid_t dcpl = H5I_INVALID_HID;
herr_t status;
H5D_layout_t layout;
hsize_t dims[2] = {DIM0, DIM1};
hsize_t dims[2] = chunk[2] = {CHUNK0, CHUNK1};
hsize_t dims[2] = start[2];
hsize_t dims[2] = stride[2];
hsize_t dims[2] = count[2];
hsize_t dims[2] = block[2];
hsize_t dims[2] = {DIM0, DIM1};
hsize_t chunk[2] = {CHUNK0, CHUNK1};
hsize_t start[2];
hsize_t stride[2];
hsize_t count[2];
hsize_t block[2];
int wdata[DIM0][DIM1]; /* Write buffer */
int rdata[DIM0][DIM1]; /* Read buffer */
hsize_t i, j;
Expand Down

0 comments on commit 87af555

Please sign in to comment.