[BACK]Return to du.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / du

Diff for /src/usr.bin/du/du.c between version 1.23 and 1.24

version 1.23, 2011/04/27 07:52:11 version 1.24, 2013/11/13 21:20:01
Line 217 
Line 217 
         ino_t    ino;          ino_t    ino;
 };  };
   
 int  static int
 links_cmp(struct links_entry *e1, struct links_entry *e2)  links_cmp(struct links_entry *e1, struct links_entry *e2)
 {  {
         if (e1->dev == e2->dev) {          if (e1->dev == e2->dev) {
Line 232 
Line 232 
   
 RB_HEAD(ltree, links_entry) links = RB_INITIALIZER(&links);  RB_HEAD(ltree, links_entry) links = RB_INITIALIZER(&links);
   
 RB_GENERATE(ltree, links_entry, entry, links_cmp);  RB_GENERATE_STATIC(ltree, links_entry, entry, links_cmp);
   
   
 int  int

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24