Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 3 May 2019 21:06:34 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r347059 - head/stand/efi/boot1
Message-ID:  <201905032106.x43L6YCe081254@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Fri May  3 21:06:34 2019
New Revision: 347059
URL: https://svnweb.freebsd.org/changeset/base/347059

Log:
  Remove stray '*'
  
  We're storing an EFI_HANDLE, not an pointer to a handle. Since
  EFI_HANDLE is a void * anyway, this has little practical effect since
  the conversion to / from void * and void ** is silent.

Modified:
  head/stand/efi/boot1/boot_module.h

Modified: head/stand/efi/boot1/boot_module.h
==============================================================================
--- head/stand/efi/boot1/boot_module.h	Fri May  3 20:38:43 2019	(r347058)
+++ head/stand/efi/boot1/boot_module.h	Fri May  3 21:06:34 2019	(r347059)
@@ -48,7 +48,7 @@ typedef struct dev_info
 {
 	EFI_BLOCK_IO *dev;
 	EFI_DEVICE_PATH *devpath;
-	EFI_HANDLE *devhandle;
+	EFI_HANDLE devhandle;
 	void *devdata;
 	uint64_t partoff;
 	int preferred;



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