# HG changeset patch # User Kim Alvefur # Date 1539199415 -7200 # Node ID 6c279302fff4a796ac2b078ad0ac1d0c4acf0b9d # Parent 640c4f1b69a1f5165c6d8afc649eccf909d452d2 mod_storage_sql: Remove unused function argument [luacheck] What was the intent of this argument anyways? diff -r 640c4f1b69a1 -r 6c279302fff4 plugins/mod_storage_sql.lua --- a/plugins/mod_storage_sql.lua Wed Oct 10 21:22:43 2018 +0200 +++ b/plugins/mod_storage_sql.lua Wed Oct 10 21:23:35 2018 +0200 @@ -462,7 +462,7 @@ --- 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 {