# HG changeset patch # User Kim Alvefur # Date 1432066553 -7200 # Node ID c04d10557bbce99e87c9fff43e0765e1163a77e6 # Parent 54c8a0cb299637bf315b46bf444752a3a30e6d55 mod_storage_gdbm: Fix typo in unused field on store instance diff -r 54c8a0cb2996 -r c04d10557bbc mod_storage_gdbm/mod_storage_gdbm.lua --- a/mod_storage_gdbm/mod_storage_gdbm.lua Tue May 19 18:34:08 2015 +0200 +++ b/mod_storage_gdbm/mod_storage_gdbm.lua Tue May 19 22:15:53 2015 +0200 @@ -152,7 +152,7 @@ db = assert(gdbm.open(db_path, "c")); cache[db_path] = db; end - return setmetatable({ _db = db; _path = db_path; store = store, typ = type }, driver_mt); + return setmetatable({ _db = db; _path = db_path; store = store, type = typ }, driver_mt); end function purge(_, user)