aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_storage_sql.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-10-10 21:23:35 +0200
committerKim Alvefur <zash@zash.se>2018-10-10 21:23:35 +0200
commitc7ef245c0b557464cdd65618c6a3e95d065b6c1e (patch)
tree3c4b510eef6b956c87ddab0477f5a18a735ea7d4 /plugins/mod_storage_sql.lua
parenta19ac398449f2a0006e45e356c10027f35ec3707 (diff)
downloadprosody-c7ef245c0b557464cdd65618c6a3e95d065b6c1e.tar.gz
prosody-c7ef245c0b557464cdd65618c6a3e95d065b6c1e.zip
mod_storage_sql: Remove unused function argument [luacheck]
What was the intent of this argument anyways?
Diffstat (limited to 'plugins/mod_storage_sql.lua')
-rw-r--r--plugins/mod_storage_sql.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_storage_sql.lua b/plugins/mod_storage_sql.lua
index 74a9665b..018d0d29 100644
--- a/plugins/mod_storage_sql.lua
+++ b/plugins/mod_storage_sql.lua
@@ -462,7 +462,7 @@ end
--- Initialization
-local function create_table(engine, name) -- luacheck: ignore 431/engine
+local function create_table(engine) -- luacheck: ignore 431/engine
local Table, Column, Index = sql.Table, sql.Column, sql.Index;
local ProsodyTable = Table {