diff options
Diffstat (limited to 'src/H5Spkg.h')
-rw-r--r-- | src/H5Spkg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Spkg.h b/src/H5Spkg.h index 46f9201..c9b413e 100644 --- a/src/H5Spkg.h +++ b/src/H5Spkg.h @@ -37,7 +37,7 @@ * Dataspace extent information */ /* Extent container */ -typedef struct { +struct H5S_extent_t { H5S_class_t type; /* Type of extent */ hsize_t nelem; /* Number of elements in extent */ @@ -45,7 +45,7 @@ typedef struct { hsize_t *size; /* Current size of the dimensions */ hsize_t *max; /* Maximum size of the dimensions */ H5O_shared_t sh_loc; /* location of this message if shared */ -} H5S_extent_t; +}; /* * Dataspace selection information |