summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/BaseLib/SwitchStack.c
diff options
context:
space:
mode:
authorqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2007-05-31 09:24:58 +0000
committerqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2007-05-31 09:24:58 +0000
commitc75bbd0e5b127eb2bda7ebbbe4a4019d2469a9f6 (patch)
tree18e231488ee0ee0f1023681d7e94b60a5ec91f1b /MdePkg/Library/BaseLib/SwitchStack.c
parent21500a434a813b41ac28f66a97e0149b4980f2a1 (diff)
downloadedk2-c75bbd0e5b127eb2bda7ebbbe4a4019d2469a9f6.tar.gz
edk2-c75bbd0e5b127eb2bda7ebbbe4a4019d2469a9f6.tar.bz2
edk2-c75bbd0e5b127eb2bda7ebbbe4a4019d2469a9f6.zip
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/BaseLib/SwitchStack.c')
-rw-r--r--MdePkg/Library/BaseLib/SwitchStack.c3
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);