From: Lennart Poettering Date: Fri, 2 Sep 2022 11:41:59 +0000 (+0200) Subject: bootspec: clarify we knowingly ignore all errors but ENOMEM X-Git-Tag: v252-rc1~268^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=293e224056e07eb9c48042228ddb27404c8e518b;p=thirdparty%2Fsystemd.git bootspec: clarify we knowingly ignore all errors but ENOMEM --- diff --git a/src/shared/bootspec.c b/src/shared/bootspec.c index 5b7311f54de..332b5cfed33 100644 --- a/src/shared/bootspec.c +++ b/src/shared/bootspec.c @@ -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; }