summaryrefslogtreecommitdiffstats
path: root/src/H5D.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5D.c')
-rw-r--r--src/H5D.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/H5D.c b/src/H5D.c
index 3b236f9..fcc3013 100644
--- a/src/H5D.c
+++ b/src/H5D.c
@@ -50,16 +50,6 @@
/* Local typedefs */
-/*
- * A dataset is the following struct.
- */
-struct H5D_t {
- H5G_entry_t ent; /* cached object header stuff */
- H5T_t *type; /* datatype of this dataset */
- hid_t dcpl_id; /* dataset creation property id */
- H5O_layout_t layout; /* data layout */
-};
-
/* Enumerated type for allocating dataset's storage */
typedef enum {
H5D_ALLOC_CREATE, /* Dataset is being created */
@@ -3711,7 +3701,7 @@ H5Dget_offset(hid_t dset_id)
haddr_t ret_value; /* Return value */
FUNC_ENTER_API(H5Dget_offset, HADDR_UNDEF);
- H5TRACE1("h","i",dset_id);
+ H5TRACE1("a","i",dset_id);
/* Check args */
if (NULL==(dset=H5I_object_verify(dset_id, H5I_DATASET)))