chiark / gitweb /
efivars: rename last remaining err to r
[elogind.git] / src / shared / efivars.c
index 40c4270f5e1f7f7e0efeff3e4e9680b2cb54990d..2599a1aba1d91e2e0398732732dead4f3f04f459 100644 (file)
@@ -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;