mirror of
https://github.com/systemd/systemd.git
synced 2024-10-30 14:55:37 +03:00
efi: fix Usec vs. USec
This commit is contained in:
parent
bf9e477c92
commit
e9cea16db6
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user