diff options
Diffstat (limited to 'examples/h5_select.c')
-rw-r--r-- | examples/h5_select.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/h5_select.c b/examples/h5_select.c index 0c61e85..0137221 100644 --- a/examples/h5_select.c +++ b/examples/h5_select.c @@ -10,7 +10,6 @@ */ #include <hdf5.h> -#include <H5private.h> #define FILE "Select.h5" @@ -58,7 +57,7 @@ int main (void) hssize_t coord[NPOINTS][FSPACE_RANK]; /* Array to store selected points from the file dataspace */ herr_t ret; - uint32 i,j; + unsigned i,j; int matrix[FSPACE_DIM1][FSPACE_DIM2]; /* Buffer to write to the dataset */ int matrix_out[MSPACE_DIM1][MSPACE_DIM2]; /* Buffer to read from the dataset */ |