summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Dong <eric.dong@intel.com>2014-07-10 01:52:28 +0000
committerydong10 <ydong10@6f19259b-4bc3-4df7-8a09-765794883524>2014-07-10 01:52:28 +0000
commit5039b444fe8c2b8757de53b009d9f4c6bb0f9302 (patch)
treef7c6197c86f9d32f419f8be6b6cd2c66efc67739
parent86b024546709d0b3ead8df3bf16fb4c866c05921 (diff)
downloadedk2-5039b444fe8c2b8757de53b009d9f4c6bb0f9302.tar.gz
edk2-5039b444fe8c2b8757de53b009d9f4c6bb0f9302.tar.bz2
edk2-5039b444fe8c2b8757de53b009d9f4c6bb0f9302.zip
Fix build fail for VS2005 tool chain.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Eric Dong <eric.dong@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15649 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r--MdeModulePkg/Universal/SetupBrowserDxe/Setup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Universal/SetupBrowserDxe/Setup.c b/MdeModulePkg/Universal/SetupBrowserDxe/Setup.c
index 278dcb9143..5c5fe6f215 100644
--- a/MdeModulePkg/Universal/SetupBrowserDxe/Setup.c
+++ b/MdeModulePkg/Universal/SetupBrowserDxe/Setup.c
@@ -2616,7 +2616,7 @@ FindQuestionFromProgress (
*EndStr = '&';
}
- return (*RetForm != NULL);
+ return (BOOLEAN) (*RetForm != NULL);
}
/**