From 0e7819d298958084e64c0d413ec0b13fae07c479 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Mon, 22 Oct 2012 08:42:53 -0700 Subject: [PATCH] [efi] Add missing RC_TO_EFIRC() conversion Signed-off-by: Michael Brown --- src/interface/efi/efi_snp_hii.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interface/efi/efi_snp_hii.c b/src/interface/efi/efi_snp_hii.c index 96e9aa20f..90f94984d 100644 --- a/src/interface/efi/efi_snp_hii.c +++ b/src/interface/efi/efi_snp_hii.c @@ -557,7 +557,7 @@ efi_snp_hii_extract_config ( const EFI_HII_CONFIG_ACCESS_PROTOCOL *hii, if ( ( rc = efi_snp_hii_fetch ( snpdev, setting->name, NULL, results, NULL ) ) != 0 ) { - return rc; + return RC_TO_EFIRC ( rc ); } } }