[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.9 and 1.10

version 1.9, 2001/07/12 05:17:00 version 1.10, 2001/07/30 00:53:38
Line 305 
Line 305 
                 unit = unit_adjust(&bytes);                  unit = unit_adjust(&bytes);
   
                 if (bytes == 0)                  if (bytes == 0)
                         (void)printf("     0B\t%s\n", path);                          (void)printf("0B\t%s\n", path);
                 else if (bytes > 10)                  else if (bytes > 10)
                         (void)printf("%.0f%c\t%s\n", bytes, "BKMGTPE"[unit], path);                          (void)printf("%.0f%c\t%s\n", bytes, "BKMGTPE"[unit], path);
                 else                  else

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10