Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 Jan 2016 00:37:28 +0000 (UTC)
From:      Steven Hartland <smh@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r293796 - head/sys/boot/efi/libefi
Message-ID:  <201601130037.u0D0bStJ032692@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601130037.u0D0bStJ032692>