summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2007-04-05 21:08:50 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2007-04-05 21:08:50 (GMT)
commitedeeb1c3d64a0d5f03b09d5370b2421eb2654932 (patch)
tree6d24776c1f84752bb9759c6c22011b1cfbc22a7d
parentbe931bf6faaa4587ceea6dfae502d0bec7c8a3c0 (diff)
downloadhdf5-edeeb1c3d64a0d5f03b09d5370b2421eb2654932.zip
hdf5-edeeb1c3d64a0d5f03b09d5370b2421eb2654932.tar.gz
hdf5-edeeb1c3d64a0d5f03b09d5370b2421eb2654932.tar.bz2
[svn-r13599] Take out the extra parameter for the H5Epush_ret just checked in. It
happened because the code was ported from v1.7. Tested on smirom.
-rw-r--r--src/H5FDstdio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDstdio.c b/src/H5FDstdio.c
index 15f6617..2f24d2b 100644
--- a/src/H5FDstdio.c
+++ b/src/H5FDstdio.c
@@ -578,7 +578,7 @@ H5FD_stdio_alloc(H5FD_t *_file, H5FD_mem_t /*UNUSED*/ type, hid_t /*UNUSED*/ dxp
#ifndef H5_HAVE_FSEEKO
/* If fseeko isn't available, big files (>2GB) won't be supported. */
if(addr+size>BIG_FILE)
- H5Epush_ret (func, H5E_ERR_CLS, H5E_IO, H5E_SEEKERROR, "can't write file bigger than 2GB because fseeko isn't available", -1)
+ H5Epush_ret (func, H5E_IO, H5E_SEEKERROR, "can't write file bigger than 2GB because fseeko isn't available", -1)
#endif
file->eoa = addr+size;