diff options
author | Lennart Poettering <lennart@poettering.net> | 2019-07-19 18:27:39 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2019-07-25 17:10:51 +0200 |
commit | b461576de4d44ea8e5846c8c1ceeaad8f03df630 (patch) | |
tree | 92f773ba276bd5e033ea6f2f24e82cf8a1ea990a | |
parent | 5509f91261fb85ade453065202ac4a6449e56730 (diff) | |
download | systemd-b461576de4d44ea8e5846c8c1ceeaad8f03df630.tar.gz |
bootctl: drop const from non-pointer function argument
-rw-r--r-- | src/boot/bootctl.c | 2 |
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; |