plugin: set lib = RTLD_DEFAULT for builtin plugins

This commit is contained in:
Daniel Eklöf 2019-05-01 12:39:00 +02:00
parent 0d8765da1f
commit a1be489293

View file

@ -86,7 +86,7 @@ init(void)
((struct plugin){ \ ((struct plugin){ \
.name = strdup(#plug_name), \ .name = strdup(#plug_name), \
.type = (plug_type), \ .type = (plug_type), \
.lib = NULL, \ .lib = RTLD_DEFAULT, \
})); \ })); \
} while (0) } while (0)