minidump_processor: fix typo in BUS_ADRALN

Bug: google-breakpad:787
Change-Id: I9f7144b3456abb750142eae9f989133bf4f27885
Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/1734586
Reviewed-by: Mark Mentovai <mark@chromium.org>
This commit is contained in:
Mike Frysinger 2019-08-03 12:02:00 -04:00
parent 55499d616c
commit f0d43bc16b

View file

@ -1345,7 +1345,7 @@ string MinidumpProcessor::GetCrashReason(Minidump *dump, uint64_t *address) {
reason = "SIGBUS / "; reason = "SIGBUS / ";
switch (exception_flags) { switch (exception_flags) {
case MD_EXCEPTION_FLAG_LIN_BUS_ADRALN: case MD_EXCEPTION_FLAG_LIN_BUS_ADRALN:
reason.append("BUS_ADALN"); reason.append("BUS_ADRALN");
break; break;
case MD_EXCEPTION_FLAG_LIN_BUS_ADRERR: case MD_EXCEPTION_FLAG_LIN_BUS_ADRERR:
reason.append("BUS_ADRERR"); reason.append("BUS_ADRERR");