From 9d26e28f90a0567e6b96df6bf40877cddb411a5b Mon Sep 17 00:00:00 2001 From: Jordi Sanfeliu Date: Fri, 8 Mar 2019 10:31:59 +0100 Subject: [PATCH] fixed a bug that prevented counting the SReclaimable value #204 --- lib/system.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/system.pm b/lib/system.pm index 8e6a440..24a4908 100644 --- a/lib/system.pm +++ b/lib/system.pm @@ -232,7 +232,7 @@ sub system_update { } if(/^Inactive:\s+(\d+) kB$/) { $minac = $1; - last; + next; } if(/^SReclaimable:\s+(\d+) kB$/) { $srecl = $1;