bootspec: clarify we knowingly ignore all errors but ENOMEM

This commit is contained in:
Lennart Poettering 2022-09-02 13:41:59 +02:00
parent 7f5780edfb
commit 293e224056

View file

@ -643,7 +643,7 @@ static int boot_entries_find_type1(
continue;
r = boot_config_load_type1(config, f, root, dir, de->d_name);
if (r == -ENOMEM)
if (r == -ENOMEM) /* ignore all other errors */
return r;
}