summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorleo <leo.sartre@geebol.fr>2019-05-14 07:44:28 +0200
committerleo <leo.sartre@geebol.fr>2019-05-14 07:44:28 +0200
commit238358c6df96923c4510f5e2793a9976c3afdd44 (patch)
tree2fccd9e1f38e90684d74cbafd701588263a5ae05 /inc
parent230c36c6aa4fcb1db61ce177264e224c26314da1 (diff)
downloadgnu-efi-238358c6df96923c4510f5e2793a9976c3afdd44.tar.gz
efiapi.h: fix EventGroup parameter of EFI_CREATE_EVENT_EX prototype
From UEFI specifications, this parameter is a pointer, see https://uefi.org/sites/default/files/resources/UEFI_Spec_2_8_final.pdf page 148 for reference. Signed-off-by: leo <leo.sartre@geebol.fr>
Diffstat (limited to 'inc')
-rw-r--r--inc/efiapi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/efiapi.h b/inc/efiapi.h
index e7d2abd..bdf5de2 100644
--- a/inc/efiapi.h
+++ b/inc/efiapi.h
@@ -576,7 +576,7 @@ EFI_STATUS
IN EFI_TPL NotifyTpl,
IN EFI_EVENT_NOTIFY NotifyFunction OPTIONAL,
IN const VOID *NotifyContext OPTIONAL,
- IN const EFI_GUID EventGroup OPTIONAL,
+ IN const EFI_GUID *EventGroup OPTIONAL,
OUT EFI_EVENT *Event
);