mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-09 20:29:10 +02:00
Fix dlsym check
This commit is contained in:
@@ -72,7 +72,7 @@ bool setup_libdbus() {
|
|||||||
do { \
|
do { \
|
||||||
lib##name = \
|
lib##name = \
|
||||||
reinterpret_cast<decltype(lib##name)>(dlsym(handle, #name)); \
|
reinterpret_cast<decltype(lib##name)>(dlsym(handle, #name)); \
|
||||||
if (!(name)) { \
|
if (!lib##name) { \
|
||||||
logger.log("Could not find '" + std::string(#name) + "' in '" + \
|
logger.log("Could not find '" + std::string(#name) + "' in '" + \
|
||||||
std::string(libdbus_library_name) + \
|
std::string(libdbus_library_name) + \
|
||||||
"', not sending desktop notifications"); \
|
"', not sending desktop notifications"); \
|
||||||
|
|||||||
Reference in New Issue
Block a user