From: Kay Sievers Date: Thu, 24 Jan 2013 09:32:21 +0000 (+0100) Subject: efi: fix Usec vs. USec X-Git-Tag: v198~429 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=e9cea16db6c3e3c371a2f9651a2eea3dd47022d2;hp=bf9e477c92506884977d6c8d761969e105528f3e efi: fix Usec vs. USec --- diff --git a/src/shared/efivars.c b/src/shared/efivars.c index f1abee34c..d5cb88cff 100644 --- a/src/shared/efivars.c +++ b/src/shared/efivars.c @@ -126,11 +126,11 @@ static int get_boot_usec(usec_t *firmware, usec_t *loader) { assert(firmware); assert(loader); - r = read_usec(EFI_VENDOR_LOADER, "LoaderTimeInitUsec", &x); + r = read_usec(EFI_VENDOR_LOADER, "LoaderTimeInitUSec", &x); if (r < 0) return r; - r = read_usec(EFI_VENDOR_LOADER, "LoaderTimeExecUsec", &y); + r = read_usec(EFI_VENDOR_LOADER, "LoaderTimeExecUSec", &y); if (r < 0) return r;