mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-20 11:35:42 +02:00
plugin: set lib = RTLD_DEFAULT for builtin plugins
This commit is contained in:
parent
0d8765da1f
commit
a1be489293
1 changed files with 1 additions and 1 deletions
2
plugin.c
2
plugin.c
|
@ -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)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue