diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-08-30 00:59:59 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-08-30 01:12:13 +0200 |
commit | eb1b2057d839249c955189c2cba8bc37c66d4151 (patch) | |
tree | 4af9bc647e298fd06082cc21db1ff60267c925d1 /storeio | |
parent | f0cacda83293e4d792b8d12665fcb795dc11d6fc (diff) | |
download | hurd-eb1b2057d839249c955189c2cba8bc37c66d4151.tar.gz hurd-eb1b2057d839249c955189c2cba8bc37c66d4151.tar.bz2 hurd-eb1b2057d839249c955189c2cba8bc37c66d4151.zip |
Fix types of read write and readables methods
This completes 5adb4b834b1e
Diffstat (limited to 'storeio')
-rw-r--r-- | storeio/open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storeio/open.c b/storeio/open.c index f8eb6ce0..74902520 100644 --- a/storeio/open.c +++ b/storeio/open.c @@ -75,7 +75,7 @@ open_write (struct open *open, off_t offs, const void *buf, size_t len, otherwise the error code is returned. */ error_t open_read (struct open *open, off_t offs, vm_size_t amount, - void **buf, size_t *len) + void **buf, vm_size_t *len) { error_t err; if (offs < 0) |