diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2010-08-09 15:46:07 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2010-08-09 15:46:07 (GMT) |
commit | 3d1da26381becf5861c3a9e44dc4cbe23346f12a (patch) | |
tree | 878ece32e3749b8b6fcc79dcbdb29c7c30da240d | |
parent | b1f07ee3971aadbf5202e96818f1fdd43ac4b3ad (diff) | |
download | hdf5-3d1da26381becf5861c3a9e44dc4cbe23346f12a.zip hdf5-3d1da26381becf5861c3a9e44dc4cbe23346f12a.tar.gz hdf5-3d1da26381becf5861c3a9e44dc4cbe23346f12a.tar.bz2 |
[svn-r19195] Bug fix: ID 1917
Fixed a typo in the Windows definitions. Had __ftelli64, should be _ftelli64.
Tested by Allen in Windows platform.
-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 db9cde2..20fa31f 100644 --- a/src/H5FDstdio.c +++ b/src/H5FDstdio.c @@ -119,7 +119,7 @@ typedef struct H5FD_stdio_t { # define file_fseek _fseeki64 # define file_offset_t __int64 # define file_ftruncate _chsize_s /* Supported in VS 2005 or newer */ - # define file_ftell __ftelli64 + # define file_ftell _ftelli64 #else # define file_fseek fseek # define file_offset_t long |