summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2019-07-19 18:27:39 +0200
committerLennart Poettering <lennart@poettering.net>2019-07-25 17:10:51 +0200
commitb461576de4d44ea8e5846c8c1ceeaad8f03df630 (patch)
tree92f773ba276bd5e033ea6f2f24e82cf8a1ea990a /src
parent5509f91261fb85ade453065202ac4a6449e56730 (diff)
downloadsystemd-b461576de4d44ea8e5846c8c1ceeaad8f03df630.tar.gz
systemd-b461576de4d44ea8e5846c8c1ceeaad8f03df630.tar.bz2
systemd-b461576de4d44ea8e5846c8c1ceeaad8f03df630.zip
bootctl: drop const from non-pointer function argument
Diffstat (limited to 'src')
-rw-r--r--src/boot/bootctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/bootctl.c b/src/boot/bootctl.c
index f786c8d1e9..66bc3dc342 100644
--- a/src/boot/bootctl.c
+++ b/src/boot/bootctl.c
@@ -651,7 +651,7 @@ static int install_binaries(const char *esp_path, bool force) {
return r;
}
-static bool same_entry(uint16_t id, const sd_id128_t uuid, const char *path) {
+static bool same_entry(uint16_t id, sd_id128_t uuid, const char *path) {
_cleanup_free_ char *opath = NULL;
sd_id128_t ouuid;
int r;