mirror of https://github.com/acidanthera/audk.git
ArmPkg/DefaultExceptionHandlerLib: fix typo
Replace : with ; which was changes accidentally. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
This commit is contained in:
parent
cd82e330bb
commit
9f64a83484
|
@ -191,7 +191,7 @@ DefaultExceptionHandler (
|
|||
DEBUG ((EFI_D_ERROR, "\n ESR : EC 0x%02x IL 0x%x ISS 0x%08x\n", (SystemContext.SystemContextAArch64->ESR & 0xFC000000) >> 26, (SystemContext.SystemContextAArch64->ESR >> 25) & 0x1, SystemContext.SystemContextAArch64->ESR & 0x1FFFFFF ));
|
||||
|
||||
DescribeExceptionSyndrome (SystemContext.SystemContextAArch64->ESR);
|
||||
ASSERT (FALSE):
|
||||
ASSERT (FALSE);
|
||||
|
||||
DEBUG ((EFI_D_ERROR, "\nStack dump:\n"));
|
||||
for (Offset = -256; Offset < 256; Offset += 32) {
|
||||
|
|
Loading…
Reference in New Issue