svn commit: r293796 - head/sys/boot/efi/libefi

Steven Hartland smh at FreeBSD.org
Wed Jan 13 00:37:30 UTC 2016


Author: smh
Date: Wed Jan 13 00:37:28 2016
New Revision: 293796
URL: https://svnweb.freebsd.org/changeset/base/293796

Log:
  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

Modified:
  head/sys/boot/efi/libefi/libefi.c

Modified: head/sys/boot/efi/libefi/libefi.c
==============================================================================
--- head/sys/boot/efi/libefi/libefi.c	Wed Jan 13 00:34:16 2016	(r293795)
+++ head/sys/boot/efi/libefi/libefi.c	Wed Jan 13 00:37:28 2016	(r293796)
@@ -179,7 +179,7 @@ efi_main(EFI_HANDLE image_handle, EFI_SY
 	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);


More information about the svn-src-all mailing list