diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2021-03-31 06:34:33 +0000 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2021-03-31 06:34:33 +0000 |
commit | d084f20233b1ca1fe1330e1aedb614b2a0c59abf (patch) | |
tree | 6aba7e3a23dfdce11f5139362f425193ba6da8d1 | |
parent | 0809cd5f9356372c966b7df71a6fb09f6ff87073 (diff) | |
download | u-boot-d084f20233b1ca1fe1330e1aedb614b2a0c59abf.zip u-boot-d084f20233b1ca1fe1330e1aedb614b2a0c59abf.tar.gz u-boot-d084f20233b1ca1fe1330e1aedb614b2a0c59abf.tar.bz2 |
efi_loader: typo 'devide path'
Fix a typo in helloworld.efi.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
-rw-r--r-- | lib/efi_loader/helloworld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/helloworld.c b/lib/efi_loader/helloworld.c index 5c8b7a9..3f215e2 100644 --- a/lib/efi_loader/helloworld.c +++ b/lib/efi_loader/helloworld.c @@ -181,7 +181,7 @@ efi_status_t EFIAPI efi_main(efi_handle_t handle, (void **)&device_path); if (ret != EFI_SUCCESS) { con_out->output_string - (con_out, L"Missing devide path for device handle\r\n"); + (con_out, L"Missing device path for device handle\r\n"); goto out; } con_out->output_string(con_out, L"Boot device: "); |