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:
@@ -279,7 +279,7 @@ static void PrintLine (const char* Format, ...)
|
|||||||
static void PrintSeparator (void)
|
static void PrintSeparator (void)
|
||||||
/* Print a separator line */
|
/* Print a separator line */
|
||||||
{
|
{
|
||||||
PrintLine ("-----------------------------------------------------------------------");
|
PrintLine ("---------------------------------------------------------------------------");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -693,7 +693,7 @@ static void PrintSymbolHeader (void)
|
|||||||
/* Output a header for a list of symbols */
|
/* Output a header for a list of symbols */
|
||||||
{
|
{
|
||||||
/* Header */
|
/* Header */
|
||||||
PrintLine (" id name type size value export seg scope parent");
|
PrintLine (" id name type size value export seg scope parent");
|
||||||
PrintSeparator ();
|
PrintSeparator ();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -708,7 +708,7 @@ static void PrintSymbols (const cc65_symbolinfo* S)
|
|||||||
/* Segments */
|
/* Segments */
|
||||||
for (I = 0, D = S->data; I < S->count; ++I, ++D) {
|
for (I = 0, D = S->data; I < S->count; ++I, ++D) {
|
||||||
PrintId (D->symbol_id, 6);
|
PrintId (D->symbol_id, 6);
|
||||||
Print ("%-20s", D->symbol_name);
|
Print ("%-24s", D->symbol_name);
|
||||||
PrintNumber (D->symbol_type, 4, 6);
|
PrintNumber (D->symbol_type, 4, 6);
|
||||||
PrintNumber (D->symbol_size, 4, 6);
|
PrintNumber (D->symbol_size, 4, 6);
|
||||||
PrintNumber (D->symbol_value, 5, 7);
|
PrintNumber (D->symbol_value, 5, 7);
|
||||||
|
|||||||
Reference in New Issue
Block a user