aboutsummaryrefslogtreecommitdiff
path: root/src/wallet
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-03-27 14:47:57 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-03-27 14:48:36 +0100
commit11c933e1374a7ac18fe3a2e89ab19fbf290b8149 (patch)
treef0d402bdb6fcac2b6aeb4266ec3b770219c9466f /src/wallet
parentMerge pull request #3434 (diff)
downloadmonero-11c933e1374a7ac18fe3a2e89ab19fbf290b8149.tar.xz
fix lambda compile error on openbsd
Diffstat (limited to 'src/wallet')
-rw-r--r--src/wallet/wallet2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp
index 4b7e6dd93..d2a0a3ec4 100644
--- a/src/wallet/wallet2.cpp
+++ b/src/wallet/wallet2.cpp
@@ -145,7 +145,7 @@ struct options {
"shared-ringdb-dir", tools::wallet2::tr("Set shared ring database path"),
get_default_ringdb_path(),
testnet,
- [](bool testnet, bool defaulted, std::string val) {
+ [](bool testnet, bool defaulted, std::string val)->std::string {
if (testnet)
return (boost::filesystem::path(val) / "testnet").string();
return val;