summaryrefslogtreecommitdiffstats
path: root/src/H5S.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5S.c')
-rw-r--r--src/H5S.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/H5S.c b/src/H5S.c
index 771ccba..0d44675 100644
--- a/src/H5S.c
+++ b/src/H5S.c
@@ -813,18 +813,19 @@ H5S_modify(H5G_entry_t *ent, const H5S_t *ds)
* Tuesday, December 9, 1997
*
* Modifications:
- *
+ * Robb Matzke, 9 Jun 1998
+ * Removed the unused file argument since the file is now part of the
+ * ENT argument.
*-------------------------------------------------------------------------
*/
H5S_t *
-H5S_read(H5F_t __unused__ *f, H5G_entry_t *ent)
+H5S_read(H5G_entry_t *ent)
{
H5S_t *ds = NULL;
FUNC_ENTER(H5S_read, NULL);
/* check args */
- assert(f);
assert(ent);
ds = H5MM_xcalloc(1, sizeof(H5S_t));