summaryrefslogtreecommitdiff
path: root/storeio
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2022-08-30 00:59:59 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2022-08-30 01:12:13 +0200
commiteb1b2057d839249c955189c2cba8bc37c66d4151 (patch)
tree4af9bc647e298fd06082cc21db1ff60267c925d1 /storeio
parentf0cacda83293e4d792b8d12665fcb795dc11d6fc (diff)
Fix types of read write and readables methods
This completes 5adb4b834b1e
Diffstat (limited to 'storeio')
-rw-r--r--storeio/open.c2
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)