From 90e128e28adcdcf2e236db7b26933aa16cbe645c Mon Sep 17 00:00:00 2001 From: qwang12 Date: Thu, 15 Jan 2009 08:50:24 +0000 Subject: [PATCH] Fix a bug which print new stack size and old stack size wrongly. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7285 6f19259b-4bc3-4df7-8a09-765794883524 --- MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c b/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c index e6e3a11b16..3103fac037 100644 --- a/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c +++ b/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c @@ -1,7 +1,7 @@ /** @file EFI PEI Core dispatch services -Copyright (c) 2006, Intel Corporation +Copyright (c) 2006 - 2009, Intel Corporation All rights reserved. This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -474,7 +474,7 @@ PeiDispatcher ( // But if new stack is smaller than the size of old stack, we also reserve // the size of old stack at bottom of permenent memory. // - DEBUG ((EFI_D_ERROR, "Old Stack Size%d, New stack size%d\n", (INT32) Private->StackSize, (INT32) OldPeiStackSize)); + DEBUG ((EFI_D_INFO, "Old Stack size %d, New stack size %d\n", (INT32) OldPeiStackSize, (INT32) Private->StackSize)); ASSERT (Private->StackSize >= OldPeiStackSize); StackGap = Private->StackSize - OldPeiStackSize; -- 2.39.2