diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2007-04-05 20:13:11 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2007-04-05 20:13:11 (GMT) |
commit | 6f7ab83c3cdd0c53075080e5635f72dce5502e4d (patch) | |
tree | f7f7aec50a90ef5ea1a45d972bd7a4fc08a198d0 /src/H5FDstdio.c | |
parent | df31d147e09945e498080c3331ddd59332d62ff9 (diff) | |
download | hdf5-6f7ab83c3cdd0c53075080e5635f72dce5502e4d.zip hdf5-6f7ab83c3cdd0c53075080e5635f72dce5502e4d.tar.gz hdf5-6f7ab83c3cdd0c53075080e5635f72dce5502e4d.tar.bz2 |
[svn-r13594] Change a comment line. No test needed.
Diffstat (limited to 'src/H5FDstdio.c')
-rw-r--r-- | src/H5FDstdio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDstdio.c b/src/H5FDstdio.c index cd48944..358b036 100644 --- a/src/H5FDstdio.c +++ b/src/H5FDstdio.c @@ -579,7 +579,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 fseek isn't available", -1) + H5Epush_ret (func, H5E_ERR_CLS, H5E_IO, H5E_SEEKERROR, "can't write file bigger than 2GB because fseeko isn't available", -1) #endif file->eoa = addr+size; |