util.uuid: Return a string, not a number. Looked so innocent.

This commit is contained in:
Matthew Wild 2009-02-01 02:17:56 +00:00
parent 89d7887278
commit 6db4951194

View file

@ -9,10 +9,11 @@
local m_random = math.random;
local tostring = tostring;
module "uuid"
function generate()
return m_random(0, 99999999);
return tostring(m_random(0, 99999999));
end
return _M;