diff options
author | Lakshman <lakshman.94@outlook.com> | 2021-11-02 07:17:38 +0000 |
---|---|---|
committer | Guangyuan Yang <ygy@FreeBSD.org> | 2021-11-05 04:59:54 +0000 |
commit | 3530ba8cc1e7c601e01cf1d49f7943f421844745 (patch) | |
tree | ed468955654f098ecd0b877b890d9a02f9da0f67 | |
parent | 78bec4ed648f030b821be10920b636fc9788a735 (diff) | |
download | src-3530ba8cc1e7c601e01cf1d49f7943f421844745.tar.gz src-3530ba8cc1e7c601e01cf1d49f7943f421844745.zip |
efirt(9): Correct efi_var_set definition in the manpage
PR: 257531
(cherry picked from commit 2fe85640b2a3bf5c377dd180e40cd3d6e1a4f1f4)
-rw-r--r-- | share/man/man9/efirt.9 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/man/man9/efirt.9 b/share/man/man9/efirt.9 index fd5aee83656b..cdf0ea21ad8d 100644 --- a/share/man/man9/efirt.9 +++ b/share/man/man9/efirt.9 @@ -26,7 +26,7 @@ .\" .\" $FreeBSD$ .\" -.Dd December 11, 2018 +.Dd November 2, 2021 .Dt EFIRT 9 .Os .Sh NAME @@ -63,8 +63,8 @@ .Ft int .Fn efi_var_nextname "size_t *namesize" "uint16_t *name" "struct uuid *vendor" .Ft int -.Fn efi_var_set "uint16_t *name" "struct uuid *vendor" "uint32_t *attrib" \ - "size_t *datasize" "void *data" +.Fn efi_var_set "uint16_t *name" "struct uuid *vendor" "uint32_t attrib" \ + "size_t datasize" "void *data" .Sh DESCRIPTION All of the following calls will return .Dv ENXIO |