plugin: remove TODO

This commit is contained in:
Daniel Eklöf 2019-01-13 11:29:10 +01:00
parent f066ba055e
commit 2df419efc2

View file

@ -69,7 +69,6 @@ plugin_load(const char *name, enum plugin_type type)
tll_push_back(plugins, ((struct plugin){strdup(name), type, lib, NULL})); tll_push_back(plugins, ((struct plugin){strdup(name), type, lib, NULL}));
struct plugin *plug = &tll_back(plugins); struct plugin *plug = &tll_back(plugins);
/* TODO: rename to plugin_info or so, in both modules and particles */
dlerror(); /* Clear previous error */ dlerror(); /* Clear previous error */
plug->sym = dlsym(lib, "plugin_info"); plug->sym = dlsym(lib, "plugin_info");