From 7fe47a2386845ab4de05ee35b679a1fd30f765ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=BD=D0=B0=D0=B1?= Date: Sun, 12 Dec 2021 15:14:37 +0100 Subject: [PATCH] libefi: efi_type: fix unused, remove argsused MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Brian Behlendorf Signed-off-by: Ahelenia ZiemiaƄska Closes #12844 --- lib/libefi/rdwr_efi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/libefi/rdwr_efi.c b/lib/libefi/rdwr_efi.c index fd243e230e..6acfdc5e1f 100644 --- a/lib/libefi/rdwr_efi.c +++ b/lib/libefi/rdwr_efi.c @@ -1564,6 +1564,7 @@ efi_type(int fd) } return (0); #else + (void) fd; return (ENOSYS); #endif }