summaryrefslogtreecommitdiff
path: root/loaders/lua5.1/peas-lua-internal.c
diff options
context:
space:
mode:
Diffstat (limited to 'loaders/lua5.1/peas-lua-internal.c')
-rw-r--r--loaders/lua5.1/peas-lua-internal.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/loaders/lua5.1/peas-lua-internal.c b/loaders/lua5.1/peas-lua-internal.c
index 5530015..a72a4b0 100644
--- a/loaders/lua5.1/peas-lua-internal.c
+++ b/loaders/lua5.1/peas-lua-internal.c
@@ -37,7 +37,7 @@ static gpointer failed_err_key = NULL;
static int
failed_fn (lua_State *L)
{
- gchar *msg;
+ char *msg;
/* The first parameter is the Hooks table instance */
luaL_checktype (L, 1, LUA_TTABLE);
@@ -96,10 +96,10 @@ peas_lua_internal_shutdown (lua_State *L)
}
gboolean
-peas_lua_internal_call (lua_State *L,
- const gchar *name,
- guint n_args,
- gint return_type)
+peas_lua_internal_call (lua_State *L,
+ const char *name,
+ guint n_args,
+ int return_type)
{
/* Get the Hooks table */
lua_pushlightuserdata (L, &hooks_key);