summaryrefslogtreecommitdiffstats
path: root/src/interface
diff options
context:
space:
mode:
authorMichael Brown2012-10-22 17:42:53 +0200
committerMichael Brown2012-10-22 17:42:53 +0200
commit0e7819d298958084e64c0d413ec0b13fae07c479 (patch)
treef782fbf1bab7ff4337a1e83cdb2fcd5d7f1d2872 /src/interface
parent[util] Fix uninitialised-variable warning in einfo.c (diff)
downloadipxe-0e7819d298958084e64c0d413ec0b13fae07c479.tar.gz
ipxe-0e7819d298958084e64c0d413ec0b13fae07c479.tar.xz
ipxe-0e7819d298958084e64c0d413ec0b13fae07c479.zip
[efi] Add missing RC_TO_EFIRC() conversion
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/interface')
-rw-r--r--src/interface/efi/efi_snp_hii.c2
1 files changed, 1 insertions, 1 deletions
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 );
}
}
}