From f5fb7c713ea443469406a691e60a6f4567a4cb75 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Mon, 17 Jan 2022 00:32:29 +0100 Subject: Fix const warnings Now that the RPCs have const, this forces us cleaning our const-meant functions. --- storeio/dev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'storeio/dev.c') diff --git a/storeio/dev.c b/storeio/dev.c index c229f37b..8726c94c 100644 --- a/storeio/dev.c +++ b/storeio/dev.c @@ -342,7 +342,7 @@ dev_rw (struct dev *dev, off_t offs, size_t len, size_t *amount, AMOUNT. If successful, 0 is returned, otherwise an error code is returned. */ error_t -dev_write (struct dev *dev, off_t offs, void *buf, size_t len, +dev_write (struct dev *dev, off_t offs, const void *buf, size_t len, size_t *amount) { error_t buf_write (size_t buf_offs, size_t io_offs, size_t len) -- cgit v1.2.3