From 7c5adb950e0bbbf03b5308ee7f5a9dcd80241f1c Mon Sep 17 00:00:00 2001 From: miltonf Date: Mon, 15 Apr 2019 12:19:12 +0300 Subject: [PATCH] Fix pointer build error --- src/simplewallet/simplewallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 798727e..68ad8c1 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -3813,7 +3813,7 @@ bool simple_wallet::set_daemon(const std::vector& args) } catch (const std::exception &e) { } } - success_msg_writer() << boost::format("Daemon set to %s, %s") % daemon_url % (*m_trusted_daemon ? tr("trusted") : tr("untrusted")); + success_msg_writer() << boost::format("Daemon set to %s, %s") % daemon_url % (m_trusted_daemon ? tr("trusted") : tr("untrusted")); } else { fail_msg_writer() << tr("This does not seem to be a valid daemon URL."); }