summaryrefslogtreecommitdiffstats
path: root/src/H5Sdbg.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Sdbg.c')
-rw-r--r--src/H5Sdbg.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/H5Sdbg.c b/src/H5Sdbg.c
index c9103f7..f3b8f4b 100644
--- a/src/H5Sdbg.c
+++ b/src/H5Sdbg.c
@@ -86,8 +86,7 @@
*-------------------------------------------------------------------------
*/
herr_t
-H5S_debug(H5F_t *f, hid_t dxpl_id, const void *_mesg, FILE *stream, int indent,
- int fwidth)
+H5S_debug(H5F_t *f, const void *_mesg, FILE *stream, int indent, int fwidth)
{
const H5S_t *mesg = (const H5S_t*)_mesg;
@@ -107,8 +106,7 @@ H5S_debug(H5F_t *f, hid_t dxpl_id, const void *_mesg, FILE *stream, int indent,
case H5S_SIMPLE:
fprintf(stream, "%*s%-*s H5S_SIMPLE\n", indent, "", fwidth,
"Space class:");
- H5O_debug_id(H5O_SDSPACE_ID, f, dxpl_id, &(mesg->extent), stream,
- indent + 3, MAX(0, fwidth - 3));
+ H5O_debug_id(H5O_SDSPACE_ID, f, &(mesg->extent), stream, indent + 3, MAX(0, fwidth - 3));
break;
case H5S_NO_CLASS: