diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2022-06-22 17:48:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-22 17:48:51 (GMT) |
commit | 8bfed8aae444f23b493f641ea45b257b2498d79c (patch) | |
tree | bfa6ea401689690ad7cdbd9e6f0110050e78f777 /src/H5FDstdio.c | |
parent | 8b2e7b32b5b9987938ebf6936205f324bc5050b8 (diff) | |
download | hdf5-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/H5FDstdio.c')
-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 6624685..39dba47 100644 --- a/src/H5FDstdio.c +++ b/src/H5FDstdio.c @@ -1066,7 +1066,7 @@ H5FD_stdio_truncate(H5FD_t *_file, hid_t /*UNUSED*/ dxpl_id, hbool_t /*UNUSED*/ rewind(file->fp); /* 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. * |