summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Song <43005495+glennsong09@users.noreply.github.com>2024-01-20 03:08:19 (GMT)
committerGitHub <noreply@github.com>2024-01-20 03:08:19 (GMT)
commit3d1fc2c38acb24e70e334c791d5ef94308d15c3e (patch)
treecdc90b5cec1800c16f34dbe8605128bede7f697e /src
parentab11e076bf90ee2f59016bbbc4a781c9142f30b2 (diff)
downloadhdf5-3d1fc2c38acb24e70e334c791d5ef94308d15c3e.zip
hdf5-3d1fc2c38acb24e70e334c791d5ef94308d15c3e.tar.gz
hdf5-3d1fc2c38acb24e70e334c791d5ef94308d15c3e.tar.bz2
Fix chid_t to hid_t (#3948)
Co-authored-by: Glenn Song <gsong@hdfgroup.org>
Diffstat (limited to 'src')
-rw-r--r--src/H5Apublic.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Apublic.h b/src/H5Apublic.h
index 232ae0a..1eb3eff 100644
--- a/src/H5Apublic.h
+++ b/src/H5Apublic.h
@@ -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
/*-------------------------------------------------------------------------*/
/**