X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;ds=inline;f=src%2Flua.c;h=ba5fbceac593a53ed33977fbf87e650284c883b0;hb=4d370741101aeb037ae52f3529a4a0869e0dc08a;hp=79f288beb7443d3f75fee2fb61419439e6abb0fc;hpb=bc58fd44c97a23d024f44a3d0c56d015ac02cd61;p=collectd.git diff --git a/src/lua.c b/src/lua.c index 79f288be..ba5fbcea 100644 --- a/src/lua.c +++ b/src/lua.c @@ -362,7 +362,7 @@ static int lua_cb_register_write(lua_State *L) /* {{{ */ return 0; } /* }}} int lua_cb_register_write */ -static luaL_Reg collectdlib[] = { +static const luaL_Reg collectdlib[] = { {"log_debug", lua_cb_log_debug}, {"log_error", lua_cb_log_error}, {"log_info", lua_cb_log_info}, @@ -370,7 +370,9 @@ static luaL_Reg collectdlib[] = { {"log_warning", lua_cb_log_warning}, {"dispatch_values", lua_cb_dispatch_values}, {"register_read", lua_cb_register_read}, - {"register_write", lua_cb_register_write}}; + {"register_write", lua_cb_register_write}, + {NULL, NULL} +}; static int open_collectd(lua_State *L) /* {{{ */ { @@ -583,7 +585,7 @@ static int lua_shutdown(void) /* {{{ */ return (0); } /* }}} int lua_shutdown */ -void module_register() { +void module_register(void) { plugin_register_complex_config("lua", lua_config); plugin_register_shutdown("lua", lua_shutdown); }