From: Lennart Poettering Date: Fri, 19 Jul 2019 16:27:39 +0000 (+0200) Subject: bootctl: drop const from non-pointer function argument X-Git-Tag: v243-rc1~32^2~19 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b461576de4d44ea8e5846c8c1ceeaad8f03df630;p=thirdparty%2Fsystemd.git bootctl: drop const from non-pointer function argument --- diff --git a/src/boot/bootctl.c b/src/boot/bootctl.c index f786c8d1e96..66bc3dc342b 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;