summaryrefslogtreecommitdiff
path: root/libstore
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1996-09-23 16:56:59 +0000
committerMiles Bader <miles@gnu.org>1996-09-23 16:56:59 +0000
commit3dcadd49ffe5039053014aabf7d504516036f6c2 (patch)
treeac27a4a9b7ff87ab96f4bcc2b499457f55a73a78 /libstore
parent530edf93b8f54f944216a56ec56d98d235d9d119 (diff)
(_make_store):
Make CLASS arg const.
Diffstat (limited to 'libstore')
-rw-r--r--libstore/make.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstore/make.c b/libstore/make.c
index 6f5e557a..f1ab35de 100644
--- a/libstore/make.c
+++ b/libstore/make.c
@@ -27,7 +27,7 @@
/* Allocate a new store structure with meths METHS, and the various other
fields initialized to the given parameters. */
struct store *
-_make_store (struct store_class *class,
+_make_store (const struct store_class *class,
mach_port_t port, int flags, size_t block_size,
const struct store_run *runs, size_t num_runs, off_t end)
{