aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/storagemanager.lua5
1 files changed, 4 insertions, 1 deletions
diff --git a/core/storagemanager.lua b/core/storagemanager.lua
index a28d147c..45a1e21c 100644
--- a/core/storagemanager.lua
+++ b/core/storagemanager.lua
@@ -100,6 +100,9 @@ local map_shim_mt = {
end;
};
}
+
+local open; -- forward declaration
+
local function create_map_shim(host, store)
local keyval_store, err = open(host, store, "keyval");
if keyval_store == nil then return nil, err end
@@ -108,7 +111,7 @@ local function create_map_shim(host, store)
}, map_shim_mt);
end
-local function open(host, store, typ)
+function open(host, store, typ)
local driver, driver_name = get_driver(host, store);
local ret, err = driver:open(store, typ);
if not ret then