diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-11-16 20:55:01 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-11-16 20:55:01 (GMT) |
commit | aedecd83a1ea3142b6d608373c4cbd500d2542d5 (patch) | |
tree | f8f8c42bbcb51469df5fd255d51b239799555c35 /src/H5O.c | |
parent | 4fe33eda1c243a0e6410e57c151b93e1950cf192 (diff) | |
download | hdf5-aedecd83a1ea3142b6d608373c4cbd500d2542d5.zip hdf5-aedecd83a1ea3142b6d608373c4cbd500d2542d5.tar.gz hdf5-aedecd83a1ea3142b6d608373c4cbd500d2542d5.tar.bz2 |
[svn-r17897] Description:
Correct ordering of "unknown" object header message in lists of
messages.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
(too minor to require h5committest)
Diffstat (limited to 'src/H5O.c')
-rw-r--r-- | src/H5O.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -125,8 +125,8 @@ const H5O_msg_class_t *const H5O_msg_class_g[] = { H5O_MSG_DRVINFO, /*0x0014 Driver info settings */ H5O_MSG_AINFO, /*0x0015 Attribute information */ H5O_MSG_REFCOUNT, /*0x0016 Object's ref. count */ - H5O_MSG_UNKNOWN, /*0x0017 Placeholder for unknown message */ H5O_MSG_FSINFO, /*0x0018 Free-space manager info message */ + H5O_MSG_UNKNOWN, /*0x0017 Placeholder for unknown message */ }; /* Declare a free list to manage the H5O_t struct */ |