From ef05e68c38d2086c6f262744b4087f65a6e58957 Mon Sep 17 00:00:00 2001 From: Jacob Smith Date: Mon, 29 Jun 2020 12:06:57 -0500 Subject: Fix typo in HDftell macro definition: 'ftello -> ftell' --- src/H5private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v0.12