summaryrefslogtreecommitdiffhomepage
path: root/lib/uci.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/uci.c')
-rw-r--r--lib/uci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/uci.c b/lib/uci.c
index 00a451c..d9a9ea6 100644
--- a/lib/uci.c
+++ b/lib/uci.c
@@ -1005,9 +1005,9 @@ static void close_uci(void *ud) {
uci_free_context((struct uci_context *)ud);
}
-void uc_module_init(uc_value_t *scope)
+void uc_module_init(uc_vm *vm, uc_value_t *scope)
{
uc_add_proto_functions(scope, global_fns);
- cursor_type = uc_declare_type("uci.cursor", cursor_fns, close_uci);
+ cursor_type = uc_declare_type(vm, "uci.cursor", cursor_fns, close_uci);
}