summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2015-08-04 16:36:26 -0300
committerHisham Muhammad <hisham@gobolinux.org>2015-08-04 16:36:26 -0300
commitc33d32e66b80da0558da3fdfbfc2fe03cf5f4114 (patch)
treed5fc3dea6902019d2e2c5943eece86b545f6ff0e
parente5f810e0a2353c61f4e554703bcd64dcce531c1c (diff)
parent6f6f0e36ad2d3c265cc5b832bf2b100891fac0d8 (diff)
Merge pull request #235 from peter-warhzner/patch-1
Fix typo in comment
-rw-r--r--linux/LinuxProcessList.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/LinuxProcessList.c b/linux/LinuxProcessList.c
index e4bc8e50..d532c4c3 100644
--- a/linux/LinuxProcessList.c
+++ b/linux/LinuxProcessList.c
@@ -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);