summaryrefslogtreecommitdiffstats
path: root/sys/boot/efi/libefi
diff options
context:
space:
mode:
authorsmh <smh@FreeBSD.org>2016-01-13 00:37:28 +0000
committersmh <smh@FreeBSD.org>2016-01-13 00:37:28 +0000
commit6647e6bbb4970f93e1fd9409236a754a507a6fc7 (patch)
treec8a9fdfe3a7ceb914dc71a4ab8b61881b0f9cf30 /sys/boot/efi/libefi
parentfdc00556f0836ce4cea7d633b902ec251a0d833f (diff)
downloadFreeBSD-src-6647e6bbb4970f93e1fd9409236a754a507a6fc7.zip
FreeBSD-src-6647e6bbb4970f93e1fd9409236a754a507a6fc7.tar.gz
Fix typo in libefi.c
Fix a typo in libefl.c (removal or L) introduced by r293724 MFC after: 2 weeks X-MFC-With: r293268 Sponsored by: Multiplay
Diffstat (limited to 'sys/boot/efi/libefi')
-rw-r--r--sys/boot/efi/libefi/libefi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/efi/libefi/libefi.c b/sys/boot/efi/libefi/libefi.c
index 0c24c6d..f87b89a 100644
--- a/sys/boot/efi/libefi/libefi.c
+++ b/sys/boot/efi/libefi/libefi.c
@@ -179,7 +179,7 @@ efi_main(EFI_HANDLE image_handle, EFI_SYSTEM_TABLE *system_table)
argv = malloc((argc + 1) * sizeof(CHAR16*));
argc = 0;
if (addprog)
- argv[argc++] = (CHAR16 *)"loader.efi";
+ argv[argc++] = (CHAR16 *)L"loader.efi";
argp = args;
while (argp != NULL && *argp != 0) {
argp = arg_skipsep(argp);
OpenPOWER on IntegriCloud