diff options
author | Eric Dong <eric.dong@intel.com> | 2014-07-10 01:52:28 +0000 |
---|---|---|
committer | ydong10 <ydong10@6f19259b-4bc3-4df7-8a09-765794883524> | 2014-07-10 01:52:28 +0000 |
commit | 5039b444fe8c2b8757de53b009d9f4c6bb0f9302 (patch) | |
tree | f7c6197c86f9d32f419f8be6b6cd2c66efc67739 /MdeModulePkg/Universal/SetupBrowserDxe | |
parent | 86b024546709d0b3ead8df3bf16fb4c866c05921 (diff) | |
download | edk2-platforms-5039b444fe8c2b8757de53b009d9f4c6bb0f9302.tar.xz |
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
Diffstat (limited to 'MdeModulePkg/Universal/SetupBrowserDxe')
-rw-r--r-- | MdeModulePkg/Universal/SetupBrowserDxe/Setup.c | 2 |
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);
}
/**
|