summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1998-11-10 18:14:03 (GMT)
committerPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1998-11-10 18:14:03 (GMT)
commit55b20c298edb75fe3cbb75324301eacc9610f04e (patch)
treed1f0e34d2b28910c39fc7d515da35a4a2d21ab99 /examples
parente29ca0f1664e40e69a78046643adfb7377315a40 (diff)
downloadhdf5-55b20c298edb75fe3cbb75324301eacc9610f04e.zip
hdf5-55b20c298edb75fe3cbb75324301eacc9610f04e.tar.gz
hdf5-55b20c298edb75fe3cbb75324301eacc9610f04e.tar.bz2
[svn-r894] included H5private.h and changed uint to uint32
Diffstat (limited to 'examples')
-rw-r--r--examples/h5_select.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/h5_select.c b/examples/h5_select.c
index 8d587d4..0c61e85 100644
--- a/examples/h5_select.c
+++ b/examples/h5_select.c
@@ -10,6 +10,7 @@
*/
#include <hdf5.h>
+#include <H5private.h>
#define FILE "Select.h5"
@@ -57,7 +58,7 @@ int main (void)
hssize_t coord[NPOINTS][FSPACE_RANK]; /* Array to store selected points
from the file dataspace */
herr_t ret;
- uint i,j;
+ uint32 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 */