diff options
author | Kim Alvefur <zash@zash.se> | 2018-10-10 21:23:35 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-10-10 21:23:35 +0200 |
commit | 2e59708c4750b6134991d580854359eeb8171ca7 (patch) | |
tree | 3c4b510eef6b956c87ddab0477f5a18a735ea7d4 | |
parent | 5d414478e92047e64276d674e88cdd4b244bcc0a (diff) | |
download | prosody-2e59708c4750b6134991d580854359eeb8171ca7.tar.gz prosody-2e59708c4750b6134991d580854359eeb8171ca7.zip |
mod_storage_sql: Remove unused function argument [luacheck]
What was the intent of this argument anyways?
-rw-r--r-- | plugins/mod_storage_sql.lua | 2 |
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 { |