diff options
author | Miles Bader <miles@gnu.org> | 1996-04-02 21:56:16 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-04-02 21:56:16 +0000 |
commit | 126a7300e70cecddc97ceefc56b0077ee5f098b4 (patch) | |
tree | 708611178f6e76e9c473fbfe6c87fba97c0383d9 /libstore/make.c | |
parent | 34951403fa913193c11e4f4ff51bdb2b86bf99e0 (diff) |
entered into RCS
Diffstat (limited to 'libstore/make.c')
-rw-r--r-- | libstore/make.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libstore/make.c b/libstore/make.c index e5073607..340d583c 100644 --- a/libstore/make.c +++ b/libstore/make.c @@ -29,7 +29,7 @@ struct store * _make_store (enum file_storage_class class, struct store_meths *meths, mach_port_t port, size_t block_size, - off_t *runs, size_t runs_len, off_t end) + const off_t *runs, size_t runs_len, off_t end) { if (block_size & (block_size - 1)) return 0; /* block size not a power of two. */ @@ -42,7 +42,8 @@ _make_store (enum file_storage_class class, struct store_meths *meths, store->port = port; store->runs = 0; store->runs_len = 0; - store->wrap = 0; + store->wrap_src = 0; + store->wrap_dst = 0; store->end = end; store->block_size = block_size; store->source = MACH_PORT_NULL; |