diff options
author | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-02-10 13:17:51 +0000 |
---|---|---|
committer | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-02-10 13:17:51 +0000 |
commit | 9e5acfd583ee88d53cb77691f0d0a882c0fc2473 (patch) | |
tree | a241002ae4957d86e4da20b92a11744f422ea95c /MdePkg/Library | |
parent | fbbb42115cf217ff4b799000aeb563437574f477 (diff) | |
download | edk2-platforms-9e5acfd583ee88d53cb77691f0d0a882c0fc2473.tar.xz |
Change style 0 == Index to Index == 0
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7493 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library')
-rw-r--r-- | MdePkg/Library/BaseLib/CpuDeadLoop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdePkg/Library/BaseLib/CpuDeadLoop.c b/MdePkg/Library/BaseLib/CpuDeadLoop.c index a870005b1f..bf40c2dd8c 100644 --- a/MdePkg/Library/BaseLib/CpuDeadLoop.c +++ b/MdePkg/Library/BaseLib/CpuDeadLoop.c @@ -34,5 +34,5 @@ CpuDeadLoop ( {
volatile UINTN Index;
- for (Index = 0; 0 == Index;);
+ for (Index = 0; Index == 0;);
}
|