diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-01-17 00:32:29 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-01-17 00:43:09 +0100 |
commit | f5fb7c713ea443469406a691e60a6f4567a4cb75 (patch) | |
tree | b16d979915b5ad7e32ffe77ca5f5006dc639a16e /rumpdisk | |
parent | dd3048b2e483f66571cfa1b2ccebb2091b9ad990 (diff) | |
download | hurd-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 'rumpdisk')
-rw-r--r-- | rumpdisk/block-rump.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rumpdisk/block-rump.c b/rumpdisk/block-rump.c index 946792a5..c14ca7af 100644 --- a/rumpdisk/block-rump.c +++ b/rumpdisk/block-rump.c @@ -74,7 +74,7 @@ static struct block_data *block_head; static struct machdev_device_emulation_ops rump_block_emulation_ops; static struct block_data * -search_bd (char *name) +search_bd (const char *name) { struct block_data *bd = block_head; @@ -90,13 +90,13 @@ search_bd (char *name) /* BSD name of whole disk device is /dev/rwdXd * but we will receive wdX as the name */ static void -translate_name (char *output, int len, char *name) +translate_name (char *output, int len, const char *name) { snprintf (output, len - 1, "/dev/r%sd", name); } static boolean_t -is_disk_device (char *name) +is_disk_device (const char *name) { const char *dev; const char *allowed_devs[MAX_DISK_DEV] = { |