diff options
| author | Bin Meng <[email protected]> | 2023-04-05 20:15:15 +0800 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2023-04-08 07:46:44 +0200 |
| commit | 013f9f89f89045b77c4d1c92ea0875a46916095a (patch) | |
| tree | 090658ad54e95f0144875887cbebefea8bc6985a /lib | |
| parent | 199675b9d54c9be682e98b4835d22da98c0b11e3 (diff) | |
efi: selftest: Make record static
record is only referenced in efi_selftest_exitbootservices.c
Signed-off-by: Bin Meng <[email protected]>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/efi_selftest/efi_selftest_exitbootservices.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_selftest/efi_selftest_exitbootservices.c b/lib/efi_selftest/efi_selftest_exitbootservices.c index 11b43fdd90b..b090ce74d23 100644 --- a/lib/efi_selftest/efi_selftest_exitbootservices.c +++ b/lib/efi_selftest/efi_selftest_exitbootservices.c @@ -27,7 +27,7 @@ struct notification_context { static struct efi_boot_services *boottime; static struct efi_event *efi_st_event_notify; -struct notification_record record; +static struct notification_record record; struct notification_context context_before = { .record = &record, |
