summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJake Smith <jake.smith@hdfgroup.org>2020-06-30 18:36:01 (GMT)
committerJake Smith <jake.smith@hdfgroup.org>2020-06-30 18:36:01 (GMT)
commit7cbb5fe2d177e49417401e1dc0b2a4c9d618cc67 (patch)
tree5fc204192b9fbce9d36e453fc24223f6bee67cc6
parent267ff9065ba9f42fec05cdcae0caa90536a04392 (diff)
parentef05e68c38d2086c6f262744b4087f65a6e58957 (diff)
downloadhdf5-7cbb5fe2d177e49417401e1dc0b2a4c9d618cc67.zip
hdf5-7cbb5fe2d177e49417401e1dc0b2a4c9d618cc67.tar.gz
hdf5-7cbb5fe2d177e49417401e1dc0b2a4c9d618cc67.tar.bz2
Merge pull request #2669 in HDFFV/hdf5 from ~JAKE.SMITH/hdf5:bugfix/HDftell_macro_typo to develop
* commit 'ef05e68c38d2086c6f262744b4087f65a6e58957': Fix typo in HDftell macro definition: 'ftello -> ftell'
-rw-r--r--src/H5private.h2
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)