1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-28 03:25:31 +03:00

bootctl: drop const from non-pointer function argument

This commit is contained in:
Lennart Poettering 2019-07-19 18:27:39 +02:00
parent 5509f91261
commit b461576de4

View File

@ -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;