diff options
author | Miles Bader <miles@gnu.org> | 1996-09-23 16:56:59 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-09-23 16:56:59 +0000 |
commit | 3dcadd49ffe5039053014aabf7d504516036f6c2 (patch) | |
tree | ac27a4a9b7ff87ab96f4bcc2b499457f55a73a78 /libstore | |
parent | 530edf93b8f54f944216a56ec56d98d235d9d119 (diff) |
(_make_store):
Make CLASS arg const.
Diffstat (limited to 'libstore')
-rw-r--r-- | libstore/make.c | 2 |
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) { |