From 6f6f0e36ad2d3c265cc5b832bf2b100891fac0d8 Mon Sep 17 00:00:00 2001 From: peter-warhzner Date: Tue, 4 Aug 2015 18:48:34 +0500 Subject: [PATCH] Fix typo in comment --- linux/LinuxProcessList.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);