From 4818fa0efb172590bbed554648979a3e664f3ab0 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Mon, 23 May 2011 14:31:37 +0000 Subject: [PATCH] 'mesh_label' removed from 'struct h5_file' --- src/h5core/h5t_model.c | 1 - src/h5core/h5t_types_private.h | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/h5core/h5t_model.c b/src/h5core/h5t_model.c index e6fea34..4435c6f 100644 --- a/src/h5core/h5t_model.c +++ b/src/h5core/h5t_model.c @@ -190,7 +190,6 @@ init_fdata ( h5t_fdata_t* t = f->t; memset (t->mesh_name, 0, sizeof (t->mesh_name)); - memset (t->mesh_label, 0, sizeof (t->mesh_label)); t->mesh_type = 0; t->ref_elem = NULL; t->cur_mesh = -1; diff --git a/src/h5core/h5t_types_private.h b/src/h5core/h5t_types_private.h index 3f496dd..04e7167 100644 --- a/src/h5core/h5t_types_private.h +++ b/src/h5core/h5t_types_private.h @@ -118,8 +118,7 @@ typedef struct h5t_methods { typedef struct h5t_fdata { /*** book-keeping ***/ - char mesh_name[16]; - char mesh_label[256]; + char mesh_name[256]; h5_oid_t mesh_type; /* object id of element type */ const h5t_ref_elem_t* ref_elem; h5_id_t cur_mesh; /* id of current mesh */