diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2024-01-18 17:03:59 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2024-02-14 21:22:42 (GMT) |
commit | 0eb5d91d55d8683b24fc6c9cde233aa4a170b828 (patch) | |
tree | 94ca5bd6ff0ad96b7393cd12eed245d45cb5e3f0 /testpar | |
parent | c9f56a36b8f0b6af790853007e1dae51b1411fa4 (diff) | |
download | hdf5-0eb5d91d55d8683b24fc6c9cde233aa4a170b828.zip hdf5-0eb5d91d55d8683b24fc6c9cde233aa4a170b828.tar.gz hdf5-0eb5d91d55d8683b24fc6c9cde233aa4a170b828.tar.bz2 |
Replace off_t with HDoff_t internally (#3944)
off_t is a 32-bit signed value on Windows, so we should use HDoff_t
(which is __int64 on Windows) internally instead.
Also defines HDftell on Windows to be _ftelli64().
Diffstat (limited to 'testpar')
-rw-r--r-- | testpar/t_subfiling_vfd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testpar/t_subfiling_vfd.c b/testpar/t_subfiling_vfd.c index 4f109cb..2ebb0e4 100644 --- a/testpar/t_subfiling_vfd.c +++ b/testpar/t_subfiling_vfd.c @@ -320,7 +320,7 @@ test_config_file(void) FILE *config_file; char *config_filename = NULL; char *config_buf = NULL; - long config_file_len; + HDoff_t config_file_len; hid_t file_id = H5I_INVALID_HID; hid_t fapl_id = H5I_INVALID_HID; int read_stripe_count; |