diff options
-rw-r--r-- | artnet.c | 2 | ||||
-rw-r--r-- | plugin.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -320,7 +320,7 @@ static int artnet_set(instance* inst, size_t num, channel** c, channel_value* v) .universe = data->uni, .net = data->net, .length = htobe16(512), - .data = {} + .data = {0} }; memcpy(frame.data, data->data.out, 512); @@ -30,7 +30,7 @@ static int plugin_attach(char* path, char* file){ return 0; } - init = dlsym(handle, "init"); + init = (plugin_init) dlsym(handle, "init"); if(init){ if(init()){ fprintf(stderr, "Plugin %s failed to initialize\n", lib); |