diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2022-12-08 12:41:41 +0100 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2022-12-08 12:41:41 +0100 |
| commit | 4d8ae8ccd081bfddcd4bb20d46515c755503432d (patch) | |
| tree | 1187bc04f29bf449ee71b31735a7ebc6a8f92438 /libdecor/src/libdecor.c | |
| parent | 503492db78891ee9fa32f2ca65ef37bb738ce800 (diff) | |
Libdecor: update to upstream commit 25f29fef 3 dec 2022
Diffstat (limited to 'libdecor/src/libdecor.c')
| -rw-r--r-- | libdecor/src/libdecor.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libdecor/src/libdecor.c b/libdecor/src/libdecor.c index 7d48d1427..a9c11062d 100644 --- a/libdecor/src/libdecor.c +++ b/libdecor/src/libdecor.c @@ -1397,8 +1397,11 @@ check_symbol_conflicts(const struct libdecor_plugin_description *plugin_descript while (*symbol) { dlerror(); dlsym (RTLD_DEFAULT, *symbol); - if (!dlerror()) + if (!dlerror()) { + fprintf(stderr, "Plugin \"%s\" uses conflicting symbol \"%s\".\n", + plugin_description->description, *symbol); return false; + } symbol++; } |
