aboutsummaryrefslogtreecommitdiff
path: root/boot
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2022-01-17 00:32:29 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2022-01-17 00:43:09 +0100
commitf5fb7c713ea443469406a691e60a6f4567a4cb75 (patch)
treeb16d979915b5ad7e32ffe77ca5f5006dc639a16e /boot
parentdd3048b2e483f66571cfa1b2ccebb2091b9ad990 (diff)
downloadhurd-f5fb7c713ea443469406a691e60a6f4567a4cb75.tar.gz
hurd-f5fb7c713ea443469406a691e60a6f4567a4cb75.tar.bz2
hurd-f5fb7c713ea443469406a691e60a6f4567a4cb75.zip
Fix const warnings
Now that the RPCs have const, this forces us cleaning our const-meant functions.
Diffstat (limited to 'boot')
-rw-r--r--boot/boot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/boot/boot.c b/boot/boot.c
index d45d8bb9..1b10c86b 100644
--- a/boot/boot.c
+++ b/boot/boot.c
@@ -342,7 +342,7 @@ add_dev_map (const char *dev_name, const char *dev_file)
return map;
}
-static struct dev_map *lookup_dev (char *dev_name)
+static struct dev_map *lookup_dev (const char *dev_name)
{
struct dev_map *map;
@@ -1057,7 +1057,7 @@ ds_device_write_inband (device_t device,
mach_msg_type_name_t reply_type,
dev_mode_t mode,
recnum_t recnum,
- const_io_buf_ptr_inband_t data,
+ const io_buf_ptr_inband_t data,
size_t datalen,
int *bytes_written)
{