aboutsummaryrefslogtreecommitdiff
path: root/fs.lua
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2009-11-12 01:41:33 +0100
committerAdrian C. (anrxc) <anrxc@sysphere.org>2009-11-12 01:41:33 +0100
commit249294551e91b84a0c8bd81f128db8c749651677 (patch)
treebd0e55d7a987f91dee4acd434627fed7917fad02 /fs.lua
parentf5b47dca8b5bb915f6e6dc17ea5852d099609889 (diff)
downloadvicious-legacy-249294551e91b84a0c8bd81f128db8c749651677.tar.xz
fs: minor coding style change
Diffstat (limited to 'fs.lua')
-rw-r--r--fs.lua5
1 files changed, 2 insertions, 3 deletions
diff --git a/fs.lua b/fs.lua
index 28c84a6..a56a282 100644
--- a/fs.lua
+++ b/fs.lua
@@ -27,9 +27,8 @@ local function worker(format, nfs)
for line in f:lines() do
if not string.match(line, "^Filesystem.*") then
- local size, used, avail, usep, mount =
- -- Match all at once, including network file systems
- string.match(line, "^[%w%p]+[%s]+([%d%.]+)[%a]?[%s]+([%d%.]+)[%a]?[%s]+([%d%.]+)[%a]?[%s]+([%d]+)%%[%s]+([%w%p]+)$")
+ local size, used, avail, usep, mount = string.match(line, -- Match all (network file systems too)
+ "^[%w%p]+[%s]+([%d%.]+)[%a]?[%s]+([%d%.]+)[%a]?[%s]+([%d%.]+)[%a]?[%s]+([%d]+)%%[%s]+([%w%p]+)$")
fs_info["{"..mount.." size}"] = tonumber(size)
fs_info["{"..mount.." used}"] = tonumber(used)