summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/PeiDxePostCodeLibReportStatusCode/PostCode.c
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/PeiDxePostCodeLibReportStatusCode/PostCode.c')
-rw-r--r--MdePkg/Library/PeiDxePostCodeLibReportStatusCode/PostCode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/MdePkg/Library/PeiDxePostCodeLibReportStatusCode/PostCode.c b/MdePkg/Library/PeiDxePostCodeLibReportStatusCode/PostCode.c
index c57489dc3d..408ede45c7 100644
--- a/MdePkg/Library/PeiDxePostCodeLibReportStatusCode/PostCode.c
+++ b/MdePkg/Library/PeiDxePostCodeLibReportStatusCode/PostCode.c
@@ -123,7 +123,7 @@ PostCodeEnabled (
VOID
)
{
- return ((PcdGet8(PcdPostCodePropertyMask) & POST_CODE_PROPERTY_POST_CODE_ENABLED) != 0);
+ return (BOOLEAN) ((PcdGet8(PcdPostCodePropertyMask) & POST_CODE_PROPERTY_POST_CODE_ENABLED) != 0);
}
@@ -146,5 +146,5 @@ PostCodeDescriptionEnabled (
VOID
)
{
- return ((PcdGet8(PcdPostCodePropertyMask) & POST_CODE_PROPERTY_POST_CODE_ENABLED) != 0);
+ return (BOOLEAN) ((PcdGet8(PcdPostCodePropertyMask) & POST_CODE_PROPERTY_POST_CODE_ENABLED) != 0);
}