summaryrefslogtreecommitdiffstats
path: root/src/scripting/ffi.c
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2015-08-25 05:22:44 (EDT)
committer P. J. McDermott <pj@pehjota.net>2015-08-25 05:22:44 (EDT)
commit970942b41aa603672e7589ecf3dbedf480b25a62 (patch)
tree659aed03ae4da15ab1f9336a3124ca12b6ec2cc2 /src/scripting/ffi.c
parent0fb9afa52e05a1b474fab2bfb267a9a6f7268cce (diff)
downloadoverworld-rpg-970942b41aa603672e7589ecf3dbedf480b25a62.zip
overworld-rpg-970942b41aa603672e7589ecf3dbedf480b25a62.tar.gz
overworld-rpg-970942b41aa603672e7589ecf3dbedf480b25a62.tar.bz2
Save pointer to namespace struct in bindings TU
Diffstat (limited to 'src/scripting/ffi.c')
-rw-r--r--src/scripting/ffi.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/scripting/ffi.c b/src/scripting/ffi.c
index 9632893..6457f73 100644
--- a/src/scripting/ffi.c
+++ b/src/scripting/ffi.c
@@ -42,7 +42,7 @@ static int call_arg_index;
static void ffi_register_functions_in_namespace(lua_State *l,
struct ffi_namespace *parent);
-void
+struct ffi_namespace *
ffi_add_namespace(struct ffi_namespace *parent, const char *name)
{
struct ffi_namespace *new_ns;
@@ -54,7 +54,7 @@ ffi_add_namespace(struct ffi_namespace *parent, const char *name)
new_ns = malloc(sizeof(*new_ns));
if (new_ns == NULL) {
err(1, "Failed to allocate FFI namespace \"%s\"", name);
- return;
+ return NULL;
}
new_ns->name = strdup(name);
new_ns->ns_head = NULL;
@@ -69,6 +69,8 @@ ffi_add_namespace(struct ffi_namespace *parent, const char *name)
parent->ns_tail->next = new_ns;
}
parent->ns_tail = new_ns;
+
+ return new_ns;
}
void