]> git.proxmox.com Git - mirror_edk2.git/commitdiff
ArmPkg/DefaultExceptionHandlerLib: fix typo
authorArd Biesheuvel <ard.biesheuvel@linaro.org>
Mon, 9 May 2016 15:28:05 +0000 (17:28 +0200)
committerArd Biesheuvel <ard.biesheuvel@linaro.org>
Mon, 9 May 2016 15:28:05 +0000 (17:28 +0200)
Replace : with ; which was changes accidentally.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
ArmPkg/Library/DefaultExceptionHandlerLib/AArch64/DefaultExceptionHandler.c

index ca2c48c82824169a47072361863680d6a6c824ac..45a166ad21aa32affab2be1f642e3b872856562c 100644 (file)
@@ -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 ));\r
 \r
   DescribeExceptionSyndrome (SystemContext.SystemContextAArch64->ESR);\r
-  ASSERT (FALSE):\r
+  ASSERT (FALSE);\r
 \r
   DEBUG ((EFI_D_ERROR, "\nStack dump:\n"));\r
   for (Offset = -256; Offset < 256; Offset += 32) {\r