[BACK]Return to db_command.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / ddb

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/ddb/db_command.c between version 1.83.4.2 and 1.84

version 1.83.4.2, 2006/06/01 22:36:02 version 1.84, 2006/02/19 18:52:29
Line 373  db_cmd_list(const struct db_command *tab
Line 373  db_cmd_list(const struct db_command *tab
                                 db_putchar('\n');                                  db_putchar('\n');
                                 break;                                  break;
                         }                          }
                         if (p) {                          w = strlen(p);
                                 w = strlen(p);                          while (w < width) {
                                 while (w < width) {                                  w = DB_NEXT_TAB(w);
                                         w = DB_NEXT_TAB(w);                                  db_putchar('\t');
                                         db_putchar('\t');  
                                 }  
                         }                          }
                 }                  }
         }          }
Line 394  db_command(const struct db_command **las
Line 392  db_command(const struct db_command **las
         db_expr_t       addr, count;          db_expr_t       addr, count;
         boolean_t       have_addr = FALSE;          boolean_t       have_addr = FALSE;
         int             result;          int             result;
         static db_expr_t last_count = 0;  
   
         cmd = NULL;     /* XXX gcc */          static db_expr_t last_count = 0;
   
         t = db_read_token();          t = db_read_token();
         if ((t == tEOL) || (t == tCOMMA)) {          if ((t == tEOL) || (t == tCOMMA)) {

Legend:
Removed from v.1.83.4.2  
changed lines
  Added in v.1.84

CVSweb <webmaster@jp.NetBSD.org>