summaryrefslogtreecommitdiff
path: root/storeio
diff options
context:
space:
mode:
authorMarcus Brinkmann <marcus@gnu.org>2001-01-16 18:15:18 +0000
committerMarcus Brinkmann <marcus@gnu.org>2001-01-16 18:15:18 +0000
commitafe57c7088e936383ec019caab4954c792951652 (patch)
tree101f5b1585e0d691531530cca0c9ccf2bc23ee7e /storeio
parent7e2b82e92f1ee97257dfef1d3c59d33f623b22d9 (diff)
2001-01-16 Marcus Brinkmann <marcus@gnu.org>
* dev.c (dev_open): Add missing argument `classes' to invocation of store_create. * dev.h: Include <hurd/trivfs.h> for struct trivfs_control.
Diffstat (limited to 'storeio')
-rw-r--r--storeio/ChangeLog7
-rw-r--r--storeio/dev.c2
-rw-r--r--storeio/dev.h1
3 files changed, 9 insertions, 1 deletions
diff --git a/storeio/ChangeLog b/storeio/ChangeLog
index 216cf3cb..4152a368 100644
--- a/storeio/ChangeLog
+++ b/storeio/ChangeLog
@@ -1,3 +1,10 @@
+2001-01-16 Marcus Brinkmann <marcus@gnu.org>
+
+ * dev.c (dev_open): Add missing argument `classes' to invocation
+ of store_create.
+
+ * dev.h: Include <hurd/trivfs.h> for struct trivfs_control.
+
2001-01-16 Roland McGrath <roland@frob.com>
* storeio.c (parse_opt): Set PARAMS->store_params.store_optional.
diff --git a/storeio/dev.c b/storeio/dev.c
index 96f60395..6b7f0927 100644
--- a/storeio/dev.c
+++ b/storeio/dev.c
@@ -146,7 +146,7 @@ dev_open (struct dev *dev)
We are to operate on our underlying node. */
err = store_create (storeio_fsys->underlying,
dev->readonly ? STORE_READONLY : 0,
- &dev->store);
+ 0, &dev->store);
}
else
diff --git a/storeio/dev.h b/storeio/dev.h
index 52960cd7..7a64c54e 100644
--- a/storeio/dev.h
+++ b/storeio/dev.h
@@ -24,6 +24,7 @@
#include <device/device.h>
#include <rwlock.h>
#include <hurd/store.h>
+#include <hurd/trivfs.h>
extern struct trivfs_control *storeio_fsys;