summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-01-19 18:15:51 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-01-19 18:15:51 (GMT)
commitad8afcade30f004c9acdf8ae366564db998cd049 (patch)
treef9a2eb8aa764a86d434a13376814ccd77679fdfc /src
parentd4909147e16628c04ce64e272503f96030f1df30 (diff)
downloadhdf5-ad8afcade30f004c9acdf8ae366564db998cd049.zip
hdf5-ad8afcade30f004c9acdf8ae366564db998cd049.tar.gz
hdf5-ad8afcade30f004c9acdf8ae366564db998cd049.tar.bz2
[svn-r13157] Description:
Revert change to H5O_fill_new_t, at least until I straight it out more... Tested on: Linux/32 2.6 (chicago) Linux/64 2.6 (chicago2)
Diffstat (limited to 'src')
-rw-r--r--src/H5Oprivate.h4
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;
/*