diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-05-31 09:24:58 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-05-31 09:24:58 +0000 |
commit | c75bbd0e5b127eb2bda7ebbbe4a4019d2469a9f6 (patch) | |
tree | 18e231488ee0ee0f1023681d7e94b60a5ec91f1b /MdePkg/Library | |
parent | 21500a434a813b41ac28f66a97e0149b4980f2a1 (diff) | |
download | edk2-platforms-c75bbd0e5b127eb2bda7ebbbe4a4019d2469a9f6.tar.xz |
Update the Guid Value of Ext SCSI Pass Thru Protocol
Minor update the ASSERT() statement in Switch Stack.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2609 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library')
-rw-r--r-- | MdePkg/Library/BaseLib/SwitchStack.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MdePkg/Library/BaseLib/SwitchStack.c b/MdePkg/Library/BaseLib/SwitchStack.c index 5dc21f5479..b47cfe0b10 100644 --- a/MdePkg/Library/BaseLib/SwitchStack.c +++ b/MdePkg/Library/BaseLib/SwitchStack.c @@ -52,7 +52,8 @@ SwitchStack ( {
VA_LIST Marker;
- ASSERT (EntryPoint != NULL && NewStack != NULL);
+ ASSERT (EntryPoint != NULL);
+ ASSERT (NewStack != NULL);
VA_START (Marker, NewStack);
|