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

Diff for /src/usr.bin/systat/swap.c between version 1.27 and 1.28

version 1.27, 2015/08/20 22:32:42 version 1.28, 2019/06/28 13:35:04
Line 120 
Line 120 
                 return 0;                  return 0;
   
         rnswap = swapctl(SWAP_STATS, (void *)swap_devices, nswap);          rnswap = swapctl(SWAP_STATS, (void *)swap_devices, nswap);
         if (rnswap < 0 || nswap != rnswap)          if (rnswap == -1 || nswap != rnswap)
                 return 0;                  return 0;
   
         num_disp = nswap;          num_disp = nswap;

Legend:
Removed from v.1.27  
changed lines
  Added in v.1.28