summaryrefslogtreecommitdiffstats
path: root/src/H5FDstdio.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-04-27 22:40:05 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-04-27 22:40:05 (GMT)
commit2ad138dbb941e02c5811f0962d3a0ca6f01aa7f3 (patch)
treee9c2128e6cc2cc90b73f53445e95288fe1879a07 /src/H5FDstdio.c
parent53f5793d38fe137cd32fec38f8686bd21452d46f (diff)
downloadhdf5-2ad138dbb941e02c5811f0962d3a0ca6f01aa7f3.zip
hdf5-2ad138dbb941e02c5811f0962d3a0ca6f01aa7f3.tar.gz
hdf5-2ad138dbb941e02c5811f0962d3a0ca6f01aa7f3.tar.bz2
[svn-r18652] Description:
Bring r18650 from trunk to 1.8 branch: Bring back various minor tweaks & cleanups from the revise_chunks branch. Tested on: FreeBSD/32 6.3 (duty) in debug mode Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode (h5committested on trunk)
Diffstat (limited to 'src/H5FDstdio.c')
-rw-r--r--src/H5FDstdio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FDstdio.c b/src/H5FDstdio.c
index 7fffbd4..b241f4d 100644
--- a/src/H5FDstdio.c
+++ b/src/H5FDstdio.c
@@ -791,8 +791,8 @@ H5FD_stdio_read(H5FD_t *_file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, siz
H5Epush_ret (func, H5E_ERR_CLS, H5E_IO, H5E_OVERFLOW, "file address overflowed", -1)
if (REGION_OVERFLOW(addr, size))
H5Epush_ret (func, H5E_ERR_CLS, H5E_IO, H5E_OVERFLOW, "file address overflowed", -1)
- if (addr+size>file->eoa)
- H5Epush_ret (func, H5E_ERR_CLS, H5E_IO, H5E_OVERFLOW, "file address overflowed", -1)
+ if((addr + size) > file->eoa)
+ H5Epush_ret(func, H5E_ERR_CLS, H5E_IO, H5E_OVERFLOW, "file address overflowed", -1)
/* Check easy cases */
if (0 == size)