From 0d73f6d8ae32f1cd48ce9f089b902eb0877605e1 Mon Sep 17 00:00:00 2001 From: "Adrian C. (anrxc)" Date: Mon, 26 Oct 2009 20:32:48 +0100 Subject: Ensure returned numbers are of type number Thanks to Felix for bringing this to my attention. Obviously there was already a safety net for feeding progressbars and graphs... and while this makes for a good coding practice it's not a big deal. We have widgets of type textbox for one, and a lot of string concatenation happens. Strings are formatted, markup is applied... --- fs.lua | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'fs.lua') diff --git a/fs.lua b/fs.lua index 3aaaefb..4a5ab06 100644 --- a/fs.lua +++ b/fs.lua @@ -5,6 +5,7 @@ --------------------------------------------------- -- {{{ Grab environment +local tonumber = tonumber local io = { popen = io.popen } local setmetatable = setmetatable local string = { match = string.match } @@ -30,10 +31,10 @@ local function worker(format, nfs) -- 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]+)$") - fs_info["{"..mount.." size}"] = size - fs_info["{"..mount.." used}"] = used - fs_info["{"..mount.." avail}"] = avail - fs_info["{"..mount.." usep}"] = usep + fs_info["{"..mount.." size}"] = tonumber(size) + fs_info["{"..mount.." used}"] = tonumber(used) + fs_info["{"..mount.." avail}"] = tonumber(avail) + fs_info["{"..mount.." usep}"] = tonumber(usep) end end f:close() -- cgit v1.2.3