From 61f3e1dce38a1d27d84826d3edaf890df0ace6c6 Mon Sep 17 00:00:00 2001 From: uz Date: Fri, 19 Aug 2011 11:22:36 +0000 Subject: [PATCH] Allow more space for symbol names. git-svn-id: svn://svn.cc65.org/cc65/trunk@5227 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/dbginfo/dbgsh.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dbginfo/dbgsh.c b/src/dbginfo/dbgsh.c index 808b1763b..ecb0dfc9f 100644 --- a/src/dbginfo/dbgsh.c +++ b/src/dbginfo/dbgsh.c @@ -279,7 +279,7 @@ static void PrintLine (const char* Format, ...) static void PrintSeparator (void) /* Print a separator line */ { - PrintLine ("-----------------------------------------------------------------------"); + PrintLine ("---------------------------------------------------------------------------"); } @@ -693,7 +693,7 @@ static void PrintSymbolHeader (void) /* Output a header for a list of symbols */ { /* Header */ - PrintLine (" id name type size value export seg scope parent"); + PrintLine (" id name type size value export seg scope parent"); PrintSeparator (); } @@ -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); -- 2.39.5