summaryrefslogtreecommitdiffstats
path: root/src/H5Epublic.h
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2005-05-16 15:54:10 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2005-05-16 15:54:10 (GMT)
commit4977e0ac5163ce29211596f84cb39c3c5e525a16 (patch)
tree12575070e98d19b0ed130886140b10345c6026d3 /src/H5Epublic.h
parenta4345b99179330c06f6945423ee05ac6bfbbdb9c (diff)
downloadhdf5-4977e0ac5163ce29211596f84cb39c3c5e525a16.zip
hdf5-4977e0ac5163ce29211596f84cb39c3c5e525a16.tar.gz
hdf5-4977e0ac5163ce29211596f84cb39c3c5e525a16.tar.bz2
[svn-r10746] Purpose: Minor correction
Description: H5Eget_num used to return an INT type. That's not consistent with the parameter of H5Epop. Solution: Changed it to SIZE_T type. Platforms tested: fuss - very simple change.
Diffstat (limited to 'src/H5Epublic.h')
-rw-r--r--src/H5Epublic.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Epublic.h b/src/H5Epublic.h
index dd71563..2508cc5 100644
--- a/src/H5Epublic.h
+++ b/src/H5Epublic.h
@@ -155,7 +155,7 @@ H5_DLL hid_t H5Eget_current_stack(void);
H5_DLL herr_t H5Eclose_stack(hid_t stack_id);
H5_DLL ssize_t H5Eget_class_name(hid_t class_id, char *name, size_t size);
H5_DLL ssize_t H5Eget_msg(hid_t msg_id, H5E_type_t *type, char *msg, size_t size);
-H5_DLL int H5Eget_num(hid_t error_stack_id);
+H5_DLL size_t H5Eget_num(hid_t error_stack_id);
H5_DLL herr_t H5Eset_current_stack(hid_t err_stack_id);
H5_DLL herr_t H5Epop(hid_t err_stack, size_t count);
H5_DLL herr_t H5Eauto_is_stack(hid_t err_stack, unsigned *is_stack);