From d230d02f990f02293736dca78b108f86c86d1bd0 Mon Sep 17 00:00:00 2001 From: Peter Jones Date: Mon, 26 Aug 2019 16:12:05 -0400 Subject: console: Fix a typo in the EFI warning list in gnu-efi Some versions of gnu-efi have a typo, in which "EFI_WARN_UNKNOWN_GLYPH" is accidentally "EFI_WARN_UNKOWN_GLYPH". Work around that, so that we can use the not-silly one in console.c's list of error and warning messages. This is a backport from devel for: commit 5f62b22ccd636d326b3229a2b196118701c6f3f7 Author: Peter Jones Date: Mon Aug 26 16:12:05 2019 -0400 Signed-off-by: Peter Jones --- lib/console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/console.c') diff --git a/lib/console.c b/lib/console.c index a1d6a840..05f7ec16 100644 --- a/lib/console.c +++ b/lib/console.c @@ -603,7 +603,7 @@ static struct { { EFI_SECURITY_VIOLATION, L"Security Violation"}, // warnings - { EFI_WARN_UNKOWN_GLYPH, L"Warning Unknown Glyph"}, + { EFI_WARN_UNKNOWN_GLYPH, L"Warning Unknown Glyph"}, { EFI_WARN_DELETE_FAILURE, L"Warning Delete Failure"}, { EFI_WARN_WRITE_FAILURE, L"Warning Write Failure"}, { EFI_WARN_BUFFER_TOO_SMALL, L"Warning Buffer Too Small"}, -- cgit v1.2.3