Skip to content

Commit

Permalink
fix issue crash-utility#64
Browse files Browse the repository at this point in the history
  • Loading branch information
mthenault committed Sep 10, 2020
1 parent 40a83c9 commit e028ade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel.c
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,7 @@ verify_version(void)
if (!(sp = symbol_search("linux_banner")))
error(FATAL, "linux_banner symbol does not exist?\n");
else if ((sp->type == 'R') || (sp->type == 'r') ||
(machine_type("ARM") && sp->type == 'T') ||
(machine_type("ARM") && ( sp->type == 'T') || (sp->type == 'D')) ||
(machine_type("ARM64")))
linux_banner = symbol_value("linux_banner");
else
Expand Down

0 comments on commit e028ade

Please sign in to comment.