Fix chid_t to hid_t (#3948)

Co-authored-by: Glenn Song <gsong@hdfgroup.org>
This commit is contained in:
Glenn Song 2024-01-19 21:08:19 -06:00 committed by GitHub
parent ab11e076bf
commit 3d1fc2c38a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -929,7 +929,7 @@ H5_DLL herr_t H5Aread(hid_t attr_id, hid_t type_id, void *buf);
H5_DLL herr_t H5Aread_async(const char *app_file, const char *app_func, unsigned app_line, hid_t attr_id,
hid_t dtype_id, void *buf, hid_t es_id);
#else
H5_DLL herr_t H5Aread_async(chid_t attr_id, hid_t dtype_id, void *buf, hid_t es_id);
H5_DLL herr_t H5Aread_async(hid_t attr_id, hid_t dtype_id, void *buf, hid_t es_id);
#endif
/*-------------------------------------------------------------------------*/
/**