diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2013-11-30 05:51:42 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2013-11-30 05:51:42 (GMT) |
commit | 0a506a625b6ce09bf8b87944384e3617f8df5fa7 (patch) | |
tree | ce94401497437a7df70ea002274d7e7091acea57 /src/H5Fio.c | |
parent | a25c08e9e23bc804e9c0812cd7c1d17ab15f9c8c (diff) | |
download | hdf5-0a506a625b6ce09bf8b87944384e3617f8df5fa7.zip hdf5-0a506a625b6ce09bf8b87944384e3617f8df5fa7.tar.gz hdf5-0a506a625b6ce09bf8b87944384e3617f8df5fa7.tar.bz2 |
[svn-r24476] Description:
Remove duplicate "intent" flags from top & shared file structures, leaving
them only in the shared file structure.
Tested on:
Mac OSX/64 10.9.0 (amazon) w/gcc 4.8, both parallel & serial
(too minor to require h5committest)
Diffstat (limited to 'src/H5Fio.c')
-rw-r--r-- | src/H5Fio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fio.c b/src/H5Fio.c index 83c86ea..d494488 100644 --- a/src/H5Fio.c +++ b/src/H5Fio.c @@ -145,7 +145,7 @@ HDfprintf(stderr, "%s: write to addr = %a, size = %Zu\n", FUNC, addr, size); HDassert(f); HDassert(f->shared); - HDassert(f->intent & H5F_ACC_RDWR); + HDassert(H5F_INTENT(f) & H5F_ACC_RDWR); HDassert(buf); HDassert(H5F_addr_defined(addr)); |