summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-11-29 11:25:44 +0100
committerDavid Robillard <d@drobilla.net>2020-11-29 11:25:44 +0100
commitd4d86ae54ebe73ad481f84145002ed8fb425d34f (patch)
treecd4af17382eda4cf243fba8ce3f00c717a4c467c
parent42309f6c48066c540c51ddc18b5f7a635554b3cc (diff)
downloadpatchage-d4d86ae54ebe73ad481f84145002ed8fb425d34f.tar.gz
patchage-d4d86ae54ebe73ad481f84145002ed8fb425d34f.tar.bz2
patchage-d4d86ae54ebe73ad481f84145002ed8fb425d34f.zip
Fix build on MacOS
-rw-r--r--src/Patchage.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Patchage.cpp b/src/Patchage.cpp
index b5123b6..641714a 100644
--- a/src/Patchage.cpp
+++ b/src/Patchage.cpp
@@ -311,7 +311,8 @@ Patchage::Patchage(int argc, char** argv)
_about_win->set_logo(Gdk::Pixbuf::create_from_file(
bundle_location() + "/Resources/Patchage.icns"));
} catch (const Glib::Exception& e) {
- _log.error(fmt::format("Failed to set logo ({})", e.what()));
+ _log.error(
+ fmt::format("Failed to set logo ({})", std::string(e.what())));
}
#endif