Skip to content
Snippets Groups Projects
Commit 309c5a8a authored by Marek Vavruša's avatar Marek Vavruša
Browse files

daemon/lua: bad multiplier for GB

parent 716ac5d0
Branches
Tags
No related merge requests found
-- Units
kB = 1024
MB = 1024*1024
GB = 1024*1024
MB = 1024*kB
GB = 1024*MB
-- Time
sec = 1000
minute = 60 * sec
......@@ -146,4 +146,4 @@ function table_print (tt, indent, done)
else
io.write(tostring(tt) .. "\n")
end
end
\ No newline at end of file
end
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment