summaryrefslogtreecommitdiffstats
path: root/src/H5FDlog.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2022-06-22 17:48:51 (GMT)
committerGitHub <noreply@github.com>2022-06-22 17:48:51 (GMT)
commit8bfed8aae444f23b493f641ea45b257b2498d79c (patch)
treebfa6ea401689690ad7cdbd9e6f0110050e78f777 /src/H5FDlog.c
parent8b2e7b32b5b9987938ebf6936205f324bc5050b8 (diff)
downloadhdf5-8bfed8aae444f23b493f641ea45b257b2498d79c.zip
hdf5-8bfed8aae444f23b493f641ea45b257b2498d79c.tar.gz
hdf5-8bfed8aae444f23b493f641ea45b257b2498d79c.tar.bz2
Converts __int64 to LONGLONG in LARGE_INTEGER union members on Windows (#1816)
Diffstat (limited to 'src/H5FDlog.c')
-rw-r--r--src/H5FDlog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDlog.c b/src/H5FDlog.c
index 28ba5d8..90c4d0f 100644
--- a/src/H5FDlog.c
+++ b/src/H5FDlog.c
@@ -1626,7 +1626,7 @@ H5FD__log_truncate(H5FD_t *_file, hid_t H5_ATTR_UNUSED dxpl_id, hbool_t H5_ATTR_
*/
/* Windows uses this odd QuadPart union for 32/64-bit portability */
- li.QuadPart = (__int64)file->eoa;
+ li.QuadPart = (LONGLONG)file->eoa;
/* Extend the file to make sure it's large enough.
*