]> git.sur5r.net Git - cc65/commitdiff
Allow more space for symbol names.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 19 Aug 2011 11:22:36 +0000 (11:22 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 19 Aug 2011 11:22:36 +0000 (11:22 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5227 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/dbginfo/dbgsh.c

index 808b1763b12ceea0d0bbc3498b7d13fa6f977f04..ecb0dfc9f0bd9732b2bb4c8dba822da5b1e7b7d6 100644 (file)
@@ -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);