mirror of
https://github.com/cc65/cc65.git
synced 2024-12-25 17:29:50 +00:00
Allow more space for symbol names.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5227 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
aff6d02c43
commit
61f3e1dce3
@ -279,7 +279,7 @@ static void PrintLine (const char* Format, ...)
|
||||
static void PrintSeparator (void)
|
||||
/* Print a separator line */
|
||||
{
|
||||
PrintLine ("-----------------------------------------------------------------------");
|
||||
PrintLine ("---------------------------------------------------------------------------");
|
||||
}
|
||||
|
||||
|
||||
@ -708,7 +708,7 @@ static void PrintSymbols (const cc65_symbolinfo* S)
|
||||
/* Segments */
|
||||
for (I = 0, D = S->data; I < S->count; ++I, ++D) {
|
||||
PrintId (D->symbol_id, 6);
|
||||
Print ("%-20s", D->symbol_name);
|
||||
Print ("%-24s", D->symbol_name);
|
||||
PrintNumber (D->symbol_type, 4, 6);
|
||||
PrintNumber (D->symbol_size, 4, 6);
|
||||
PrintNumber (D->symbol_value, 5, 7);
|
||||
|
Loading…
Reference in New Issue
Block a user