diff options
-rw-r--r-- | src/H5Oprivate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Oprivate.h b/src/H5Oprivate.h index c978b8c..42dea00 100644 --- a/src/H5Oprivate.h +++ b/src/H5Oprivate.h @@ -198,14 +198,14 @@ typedef struct H5O_fill_t { */ typedef struct H5O_fill_new_t { - H5O_shared_t sh_loc; /* Shared message info (must be first) */ - H5T_t *type; /*type. Null implies same as dataset */ ssize_t size; /*number of bytes in the fill value */ void *buf; /*the fill value */ H5D_alloc_time_t alloc_time; /* time to allocate space */ H5D_fill_time_t fill_time; /* time to write fill value */ hbool_t fill_defined; /* whether fill value is defined */ + + H5O_shared_t sh_loc; /* Shared message info (must be first) */ } H5O_fill_new_t; /* |