diff options
Diffstat (limited to 'src/H5Oginfo.c')
-rw-r--r-- | src/H5Oginfo.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/H5Oginfo.c b/src/H5Oginfo.c index 6aeda3d..10bde6d 100644 --- a/src/H5Oginfo.c +++ b/src/H5Oginfo.c @@ -42,8 +42,8 @@ static herr_t H5O_ginfo_free(void *_mesg); static herr_t H5O_ginfo_debug(H5F_t *f, hid_t dxpl_id, const void *_mesg, FILE * stream, int indent, int fwidth); -/* This message derives from H5O */ -const H5O_class_t H5O_GINFO[1] = {{ +/* This message derives from H5O message class */ +const H5O_msg_class_t H5O_MSG_GINFO[1] = {{ H5O_GINFO_ID, /*message id number */ "ginfo", /*message name for debugging */ sizeof(H5O_ginfo_t), /*native message size */ @@ -57,6 +57,7 @@ const H5O_class_t H5O_GINFO[1] = {{ NULL, /* link method */ NULL, /*get share method */ NULL, /*set share method */ + NULL, /* pre copy native value to file */ NULL, /* copy native value to file */ NULL, /* post copy native value to file */ H5O_ginfo_debug /*debug the message */ |