Merge pull request #235 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
1 changed files with 1 additions and 1 deletions

View File

@ -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);