diff options
author | Steven Barth <steven@midlink.org> | 2009-07-27 10:27:35 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2009-07-27 10:27:35 +0000 |
commit | 7b5cdb36b5c8d4e412eeda80f8a04a2208a329bf (patch) | |
tree | 6b58be54ed01a64b9c63e2c1a6cc2bf9757bb465 /libs/nixio/lua | |
parent | 8acc6307bf52e5e67f41597e062cb9151162f80e (diff) |
Code style
Diffstat (limited to 'libs/nixio/lua')
-rw-r--r-- | libs/nixio/lua/nixio/util.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/nixio/lua/nixio/util.lua b/libs/nixio/lua/nixio/util.lua index 401ec615e..409004882 100644 --- a/libs/nixio/lua/nixio/util.lua +++ b/libs/nixio/lua/nixio/util.lua @@ -14,8 +14,8 @@ $Id$ local table = require "table" local nixio = require "nixio" -local getmetatable, assert, pairs, type, tostring = - getmetatable, assert, pairs, type, tostring +local getmetatable, assert, pairs, type = getmetatable, assert, pairs, type +local tostring = tostring module "nixio.util" |