aboutsummaryrefslogtreecommitdiff
path: root/widgets/mem.lua
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2012-06-18 01:30:26 +0200
committerAdrian C. (anrxc) <anrxc@sysphere.org>2012-06-18 01:31:42 +0200
commite929bea270875c8fa831747bd3ee3090561f2113 (patch)
tree3fccf7766480d6c0ce1d9405634170aa032e016a /widgets/mem.lua
parent363c03e79c334cc0f3d75c1a3b60edbca0214465 (diff)
downloadvicious-legacy-e929bea270875c8fa831747bd3ee3090561f2113.tar.xz
widgets: cleanup behind the last commit 363c03e
Diffstat (limited to 'widgets/mem.lua')
-rw-r--r--widgets/mem.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/mem.lua b/widgets/mem.lua
index d122654..67ef42a 100644
--- a/widgets/mem.lua
+++ b/widgets/mem.lua
@@ -44,7 +44,7 @@ local function worker(format)
_mem.swp.usep = math.floor(_mem.swp.inuse / _mem.swp.t * 100)
return {_mem.usep, _mem.inuse, _mem.total, _mem.free,
- _mem.swp.usep, _mem.swp.inuse, _mem.swp.t, _mem.swp.f,
+ _mem.swp.usep, _mem.swp.inuse, _mem.swp.t, _mem.swp.f,
_mem.bcuse }
end
-- }}}