diff options
author | John Mainzer <mainzer@hdfgroup.org> | 2005-05-02 21:36:43 (GMT) |
---|---|---|
committer | John Mainzer <mainzer@hdfgroup.org> | 2005-05-02 21:36:43 (GMT) |
commit | 724cbc561527005e2cd4cb7026e2a144dfbef5e8 (patch) | |
tree | 89f0fe22b3689bc96926f70ca4fa84fdf193ef20 /src/H5Fpublic.h | |
parent | f6fd474fe418db0c27c474a002c414004770f098 (diff) | |
download | hdf5-724cbc561527005e2cd4cb7026e2a144dfbef5e8.zip hdf5-724cbc561527005e2cd4cb7026e2a144dfbef5e8.tar.gz hdf5-724cbc561527005e2cd4cb7026e2a144dfbef5e8.tar.bz2 |
[svn-r10717] Purpose:
Remove C99 types from new metadata cache related API calls
(take 2 -- missed one in the previous check in)
Description:
Windows (and perhaps others) don't like int32_t and int64_t. While
we have dealt with the issue internally, it is more of a problem
in API calls.
Solution:
Convert int32_t to int and int64_t to long int in the new metadata
cache related API calls.
Platforms tested:
heping
Misc. update:
Diffstat (limited to 'src/H5Fpublic.h')
-rw-r--r-- | src/H5Fpublic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fpublic.h b/src/H5Fpublic.h index a0e3780..79a2769 100644 --- a/src/H5Fpublic.h +++ b/src/H5Fpublic.h @@ -125,7 +125,7 @@ H5_DLL herr_t H5Fget_mdc_size(hid_t file_id, size_t * max_size_ptr, size_t * min_clean_size_ptr, size_t * cur_size_ptr, - int32_t * cur_num_entries_ptr); + int * cur_num_entries_ptr); H5_DLL herr_t H5Freset_mdc_hit_rate_stats(hid_t file_id); H5_DLL ssize_t H5Fget_name(hid_t obj_id, char *name, size_t size); |