diff options
author | Roland McGrath <roland@gnu.org> | 2001-03-07 15:01:37 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-03-07 15:01:37 +0000 |
commit | d1d9c14d8e50a8f263775f7e0a71bda5dd6686f6 (patch) | |
tree | 49d446315742c508ed2762e3e76560312c071d63 /libstore/zero.c | |
parent | b8ba3388ad76fe7e022a44e5422e0723770fc908 (diff) | |
download | hurd-d1d9c14d8e50a8f263775f7e0a71bda5dd6686f6.tar.gz hurd-d1d9c14d8e50a8f263775f7e0a71bda5dd6686f6.tar.bz2 hurd-d1d9c14d8e50a8f263775f7e0a71bda5dd6686f6.zip |
2001-03-07 Roland McGrath <roland@frob.com>
* store.h (store_write, store_write_meth_t): Make buffer arg const*.
* copy.c (copy_write): Likewise.
* device.c (dev_write): Likewise.
* file.c (file_write): Likewise.
(file_byte_write): Likewise.
* rdwr.c (store_write): Likewise.
* remap.c (remap_write): Likewise.
* stripe.c (stripe_write): Likewise.
* task.c (task_write): Likewise.
* zero.c (zero_write): Likewise.
Diffstat (limited to 'libstore/zero.c')
-rw-r--r-- | libstore/zero.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libstore/zero.c b/libstore/zero.c index 4452179b..3a17c1d8 100644 --- a/libstore/zero.c +++ b/libstore/zero.c @@ -1,6 +1,6 @@ /* Zero store backend - Copyright (C) 1995,96,97,99,2000 Free Software Foundation, Inc. + Copyright (C) 1995,96,97,99,2000,01 Free Software Foundation, Inc. Written by Miles Bader <miles@gnu.org> This file is part of the GNU Hurd. @@ -49,7 +49,7 @@ zero_read (struct store *store, static error_t zero_write (struct store *store, - store_offset_t addr, size_t index, void *buf, size_t len, + store_offset_t addr, size_t index, const void *buf, size_t len, size_t *amount) { return 0; |