summaryrefslogtreecommitdiffstats
path: root/src/H5Spoint.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Spoint.c')
-rw-r--r--src/H5Spoint.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/H5Spoint.c b/src/H5Spoint.c
index 981e78f..a2fac8d 100644
--- a/src/H5Spoint.c
+++ b/src/H5Spoint.c
@@ -687,15 +687,18 @@ H5S_point_release (H5S_t *space)
REVISION LOG
--------------------------------------------------------------------------*/
hsize_t
-H5S_hyper_npoints (const H5S_t *space)
+H5S_point_npoints (const H5S_t *space)
{
- FUNC_ENTER (H5S_hyper_npoints, 0);
+ FUNC_ENTER (H5S_point_npoints, 0);
/* Check args */
assert (space);
+#ifdef QAK
+ printf("%s: check 1.0, nelmts=%d\n",FUNC,(int)space->select.num_elem);
+#endif /* QAK */
FUNC_LEAVE (space->select.num_elem);
-} /* H5S_hyper_npoints() */
+} /* H5S_point_npoints() */
/*--------------------------------------------------------------------------
NAME