1
0
mirror of https://github.com/xzeldon/htop.git synced 2025-04-11 04:57:07 +03:00

Merge pull request from peter-warhzner/patch-1

Fix typo in comment
This commit is contained in:
Hisham Muhammad 2015-08-04 16:36:26 -03:00
commit c33d32e66b

@ -675,7 +675,7 @@ static inline double LinuxProcessList_scanCPUTime(LinuxProcessList* this) {
unsigned long long int ioWait, irq, softIrq, steal, guest, guestnice;
unsigned long long int systemalltime, idlealltime, totaltime, virtalltime;
ioWait = irq = softIrq = steal = guest = guestnice = 0;
// Dependending on your kernel version,
// Depending on your kernel version,
// 5, 7, 8 or 9 of these fields will be set.
// The rest will remain at zero.
char* ok = fgets(buffer, 255, file);