diff options
author | Jacob Smith <jake.smith@hdfgroup.org> | 2020-06-29 17:06:57 (GMT) |
---|---|---|
committer | Jacob Smith <jake.smith@hdfgroup.org> | 2020-06-29 17:09:07 (GMT) |
commit | ef05e68c38d2086c6f262744b4087f65a6e58957 (patch) | |
tree | e5167d8db7b75ac5d9fa76c25c8a11f88625cefe /src/H5private.h | |
parent | 30776671fb0a27a98b0640aa968f850241a862ce (diff) | |
download | hdf5-ef05e68c38d2086c6f262744b4087f65a6e58957.zip hdf5-ef05e68c38d2086c6f262744b4087f65a6e58957.tar.gz hdf5-ef05e68c38d2086c6f262744b4087f65a6e58957.tar.bz2 |
Fix typo in HDftell macro definition: 'ftello -> ftell'
Diffstat (limited to 'src/H5private.h')
-rw-r--r-- | src/H5private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5private.h b/src/H5private.h index aca4851..dc7ca57 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -959,7 +959,7 @@ typedef off_t h5_stat_size_t; #define H5_SIZEOF_H5_STAT_SIZE_T H5_SIZEOF_OFF_T #ifndef HDftell - #define HDftell(F) ftello(F) + #define HDftell(F) ftell(F) #endif /* HDftell */ #ifndef HDftruncate #define HDftruncate(F,L) ftruncate(F,L) |