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

Diff for /src/usr.bin/who/who.c between version 1.19 and 1.20

version 1.19, 2010/11/15 10:57:49 version 1.20, 2013/08/22 04:43:41
Line 245 
Line 245 
                         (void)printf("  .   ");                          (void)printf("  .   ");
                 else if (idle < (24 * 60 * 60))                  else if (idle < (24 * 60 * 60))
                         (void)printf("%02d:%02d ",                          (void)printf("%02d:%02d ",
                                      (idle / (60 * 60)),                                       ((int)idle / (60 * 60)),
                                      (idle % (60 * 60)) / 60);                                       ((int)idle % (60 * 60)) / 60);
                 else                  else
                         (void)printf(" old  ");                          (void)printf(" old  ");
         }          }

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20