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/H5Ocache.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/H5Ocache.c')
-rw-r--r-- | src/H5Ocache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Ocache.c b/src/H5Ocache.c index 8f34860..1375bb1 100644 --- a/src/H5Ocache.c +++ b/src/H5Ocache.c @@ -165,7 +165,7 @@ H5O_flush_msgs(H5F_t *f, H5O_t *oh) HDassert(curr_msg->raw_size == H5O_ALIGN_OH(oh, curr_msg->raw_size)); HDassert(curr_msg->raw + curr_msg->raw_size <= oh->chunk[curr_msg->chunkno].image + (oh->chunk[curr_msg->chunkno].size - H5O_SIZEOF_CHKSUM_OH(oh))); - if(curr_msg->flags & H5O_FLAG_SHARED) + if(curr_msg->flags & H5O_MSG_FLAG_SHARED) encode = H5O_MSG_SHARED->encode; else encode = curr_msg->type->encode; |