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