summaryrefslogtreecommitdiffstats
path: root/src/H5.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-05-20 15:31:12 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-05-20 15:31:12 (GMT)
commit70686065d082ad5f3bbce84decc066a9028a0a01 (patch)
tree41e2df2eeca460e3da44ed7a7f114bb4b1430035 /src/H5.c
parentaec19e771d2b5de4a38cddbfaf0cd87e0a7ff0a1 (diff)
downloadhdf5-70686065d082ad5f3bbce84decc066a9028a0a01.zip
hdf5-70686065d082ad5f3bbce84decc066a9028a0a01.tar.gz
hdf5-70686065d082ad5f3bbce84decc066a9028a0a01.tar.bz2
[svn-r8543] Purpose:
Code optimization Description: Expand the use of macros to inline trivial function pointer lookup and calls to reduce the overall number of functions invoked during normal operation of the library. Platforms tested: Solaris 2.7 (arabica) FreeBSD 4.9 (sleipnir) w/parallel Too minor to require h5committest
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 b338cce..94e90d8 100644
--- a/src/H5.c
+++ b/src/H5.c
@@ -2139,7 +2139,7 @@ H5_trace (double *returning, const char *func, const char *type, ...)
/* This may generate recursive call to the library... -QAK */
{
H5S_t *space = H5I_object(obj);
- if (H5S_SIMPLE==H5S_get_simple_extent_type(space)) {
+ if (H5S_SIMPLE==H5S_GET_SIMPLE_EXTENT_TYPE(space)) {
asize[argno] = H5S_get_simple_extent_ndims(space);
}
}