diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-29 20:14:20 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-29 20:14:20 (GMT) |
commit | fc57c3b8404e3410dd2b2e09ef3abf78a6fa8b25 (patch) | |
tree | 82bc24681bc776e7b184905d7aeba222352d02ac /src/H5Ocopy.c | |
parent | ce05f32a3d33fad5401b6d1d291676771fc300dd (diff) | |
download | hdf5-fc57c3b8404e3410dd2b2e09ef3abf78a6fa8b25.zip hdf5-fc57c3b8404e3410dd2b2e09ef3abf78a6fa8b25.tar.gz hdf5-fc57c3b8404e3410dd2b2e09ef3abf78a6fa8b25.tar.bz2 |
[svn-r12997] Description:
Rename too generic "H5O_FLAG_<foo>" flags that are used as flags for
header messages to "H5O_MSG_FLAG_<foo>", in order to make their use clearer.
Tested on:
FreeBSD/32 4.11 (sleipnir)
Linux/32 2.4 (heping)
Linux/64 2.4 (mir)
Diffstat (limited to 'src/H5Ocopy.c')
-rw-r--r-- | src/H5Ocopy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Ocopy.c b/src/H5Ocopy.c index 1d8f400..1eb21f3 100644 --- a/src/H5Ocopy.c +++ b/src/H5Ocopy.c @@ -390,7 +390,7 @@ H5O_copy_header_real(const H5O_loc_t *oloc_src, H5O_loc_t *oloc_dst /*out */, HDassert(!mesg_src->dirty); /* Should be cleared by earlier call to flush messages */ /* Check for shared message to operate on */ - if(mesg_src->flags & H5O_FLAG_SHARED) + if(mesg_src->flags & H5O_MSG_FLAG_SHARED) copy_type = H5O_MSG_SHARED; else copy_type = mesg_src->type; @@ -480,7 +480,7 @@ H5O_copy_header_real(const H5O_loc_t *oloc_src, H5O_loc_t *oloc_dst /*out */, /* (Use destination message, in case the message has been removed (i.e * converted to a nil message) in the destination -QAK) */ - if(mesg_dst->flags & H5O_FLAG_SHARED) + if(mesg_dst->flags & H5O_MSG_FLAG_SHARED) copy_type = H5O_MSG_SHARED; else copy_type = mesg_dst->type; @@ -632,7 +632,7 @@ H5O_copy_header_real(const H5O_loc_t *oloc_src, H5O_loc_t *oloc_dst /*out */, /* (Use destination message, in case the message has been removed (i.e * converted to a nil message) in the destination -QAK) */ - if(mesg_dst->flags & H5O_FLAG_SHARED) + if(mesg_dst->flags & H5O_MSG_FLAG_SHARED) copy_type = H5O_MSG_SHARED; else copy_type = mesg_dst->type; |