summaryrefslogtreecommitdiffstats
path: root/src/H5.c
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2001-05-29 15:53:25 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2001-05-29 15:53:25 (GMT)
commit1c61d72cf115da4212831b4efcbea0fe80d6f84f (patch)
tree195532312b66c1b526b2ea68dd9079c5b24c1fb4 /src/H5.c
parent07b035e2d41e6f92186380a616815615e932f9de (diff)
downloadhdf5-1c61d72cf115da4212831b4efcbea0fe80d6f84f.zip
hdf5-1c61d72cf115da4212831b4efcbea0fe80d6f84f.tar.gz
hdf5-1c61d72cf115da4212831b4efcbea0fe80d6f84f.tar.bz2
[svn-r3946] Purpose:
Code Simplification Description: H5Pget_class() was being called from the H5.c module. Changed it so that it calls H5P_get_class() instead. Also, the H5Pget_class() and H5P_get_class() functions were identical. Changed so that H5Pget_class() calls H5P_get_class(). Platforms tested: Linux
Diffstat (limited to 'src/H5.c')
-rw-r--r--src/H5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5.c b/src/H5.c
index 8a89604..549c62e 100644
--- a/src/H5.c
+++ b/src/H5.c
@@ -1963,7 +1963,7 @@ H5_trace (hbool_t returning, const char *func, const char *type, ...)
case H5I_TEMPLATE_5:
case H5I_TEMPLATE_6:
case H5I_TEMPLATE_7:
- switch (H5Pget_class(id_type)) {
+ switch (H5P_get_class(id_type)) {
case H5P_FILE_CREATE:
fprintf(out, "H5P_FILE_CREATE");
break;