Revert part of previous patch: Display unknown symbol types in decimal, not hex.
This commit is contained in:
parent
e6e68f1f64
commit
232e7cb82c
2 changed files with 6 additions and 1 deletions
|
@ -5529,7 +5529,7 @@ get_symbol_index_type (type)
|
|||
else if (type >= SHN_LORESERVE && type <= SHN_HIRESERVE)
|
||||
sprintf (buff, "RSV[0x%04x]", type);
|
||||
else
|
||||
sprintf (buff, "0x%04x", type);
|
||||
sprintf (buff, "%3d", type);
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue