diff options
author | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2016-05-09 17:28:05 +0200 |
---|---|---|
committer | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2016-05-09 17:28:05 +0200 |
commit | 9f64a83484ed99f1d98df1487ba39776d30d24d8 (patch) | |
tree | 1e8dda458dded7047dcf03851e9e50f60c0833d8 /ArmPkg/Library/DefaultExceptionHandlerLib | |
parent | cd82e330bbb1329b5ab8bd236e063af41cd4007a (diff) | |
download | edk2-9f64a83484ed99f1d98df1487ba39776d30d24d8.zip edk2-9f64a83484ed99f1d98df1487ba39776d30d24d8.tar.gz edk2-9f64a83484ed99f1d98df1487ba39776d30d24d8.tar.bz2 |
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>
Diffstat (limited to 'ArmPkg/Library/DefaultExceptionHandlerLib')
-rw-r--r-- | ArmPkg/Library/DefaultExceptionHandlerLib/AArch64/DefaultExceptionHandler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ArmPkg/Library/DefaultExceptionHandlerLib/AArch64/DefaultExceptionHandler.c b/ArmPkg/Library/DefaultExceptionHandlerLib/AArch64/DefaultExceptionHandler.c index ca2c48c..45a166a 100644 --- a/ArmPkg/Library/DefaultExceptionHandlerLib/AArch64/DefaultExceptionHandler.c +++ b/ArmPkg/Library/DefaultExceptionHandlerLib/AArch64/DefaultExceptionHandler.c @@ -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) {
|