X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Flua.c;h=9eda7d5b4ed0403bb056afb1ea542e83ce158f0d;hb=295947714f23935be771c98f1071564d5567d33a;hp=1bcb2e136165ba828c40bc4191cffe1435825710;hpb=2079ee1517e34de372f58e7e2267ad5c71a8a41f;p=collectd.git diff --git a/src/lua.c b/src/lua.c index 1bcb2e13..9eda7d5b 100644 --- a/src/lua.c +++ b/src/lua.c @@ -303,13 +303,12 @@ static int lua_cb_register_read(lua_State *L) /* {{{ */ cb->lua_function_name = strdup(function_name); pthread_mutex_init(&cb->lock, NULL); - user_data_t ud = {.data = cb}; - int status = plugin_register_complex_read(/* group = */ "lua", /* name = */ function_name, /* callback = */ clua_read, - /* interval = */ 0, - /* user_data = */ &ud); + /* interval = */ 0, &(user_data_t){ + .data = cb, + }); if (status != 0) return luaL_error(L, "%s", "plugin_register_complex_read failed"); @@ -347,11 +346,11 @@ static int lua_cb_register_write(lua_State *L) /* {{{ */ cb->lua_function_name = strdup(function_name); pthread_mutex_init(&cb->lock, NULL); - user_data_t ud = {.data = cb}; - - int status = plugin_register_write(/* name = */ function_name, - /* callback = */ clua_write, - /* user_data = */ &ud); + int status = + plugin_register_write(/* name = */ function_name, + /* callback = */ clua_write, &(user_data_t){ + .data = cb, + }); if (status != 0) return luaL_error(L, "%s", "plugin_register_write failed"); @@ -584,5 +583,3 @@ void module_register(void) { plugin_register_complex_config("lua", lua_config); plugin_register_shutdown("lua", lua_shutdown); } - -/* vim: set sw=2 sts=2 et fdm=marker : */