diff options
Diffstat (limited to 'examples/h5_attribute.c')
-rw-r--r-- | examples/h5_attribute.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/h5_attribute.c b/examples/h5_attribute.c index ab2c539..23632ca 100644 --- a/examples/h5_attribute.c +++ b/examples/h5_attribute.c @@ -12,7 +12,6 @@ #include <stdlib.h> #include <hdf5.h> -#include <H5private.h> #define FILE "Attributes.h5" @@ -46,7 +45,7 @@ main (void) float matrix[ADIM1][ADIM2]; /* Attribute data */ herr_t ret; /* Return value */ - uint32 i,j; /* Counters */ + unsigned i,j; /* Counters */ int idx; /* Attribute index */ char string_out[80]; /* Buffer to read string attribute back */ int point_out; /* Buffer to read scalar attribute back */ |