diff options
author | Max Kellermann <max@musicpd.org> | 2017-12-29 17:12:55 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-10-14 23:41:38 +0200 |
commit | 94592c14062d5afc9482d11baa401648082022c0 (patch) | |
tree | 8723d462737f883181fb1aaa3f91ee3d0add9721 /test/run_resolver.cxx | |
parent | 13ce142df137f346526de2a31a7ccbd59a903cdd (diff) |
build with Meson instead of autotools
So long, autotools! This is my last MPD related project to migrate
away from it. It has its strengths, but also very obvious weaknesses
and weirdnesses. Today, many of its quirks are not needed anymore,
and are cumbersome and slow. Now welcome our new Meson overlords!
Diffstat (limited to 'test/run_resolver.cxx')
-rw-r--r-- | test/run_resolver.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/run_resolver.cxx b/test/run_resolver.cxx index 8e712301a..4a1a110cd 100644 --- a/test/run_resolver.cxx +++ b/test/run_resolver.cxx @@ -22,7 +22,7 @@ #include "net/AddressInfo.hxx" #include "net/ToString.hxx" #include "net/SocketAddress.hxx" -#include "Log.hxx" +#include "util/PrintException.hxx" #include <exception> @@ -42,6 +42,6 @@ try { return EXIT_SUCCESS; } catch (...) { - LogError(std::current_exception()); + PrintException(std::current_exception()); return EXIT_FAILURE; } |