summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/shared/efivars.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/shared/efivars.c b/src/shared/efivars.c
index 40c4270f5..2599a1aba 100644
--- a/src/shared/efivars.c
+++ b/src/shared/efivars.c
@@ -261,12 +261,12 @@ int efi_get_boot_option(
size_t title_size;
_cleanup_free_ char *s = NULL, *p = NULL;
sd_id128_t p_uuid = SD_ID128_NULL;
- int err;
+ int r;
xsprintf(boot_id, "Boot%04X", id);
- err = efi_get_variable(EFI_VENDOR_GLOBAL, boot_id, NULL, (void **)&buf, &l);
- if (err < 0)
- return err;
+ r = efi_get_variable(EFI_VENDOR_GLOBAL, boot_id, NULL, (void **)&buf, &l);
+ if (r < 0)
+ return r;
if (l < sizeof(struct boot_option))
return -ENOENT;