aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHoward Chu <hyc@symas.com>2017-08-20 15:58:06 +0100
committerHoward Chu <hyc@symas.com>2017-08-21 10:16:10 +0100
commit0c6c3eb3f220aa4c9f575ebaaacf5775a68589c5 (patch)
treef47a9a45d0f3df3098c074df1293bacbd8459ab0 /src
parentMerge pull request #2303 (diff)
downloadmonero-0c6c3eb3f220aa4c9f575ebaaacf5775a68589c5.tar.xz
Silence stupid fallthru warning in gcc 7
Diffstat (limited to 'src')
-rw-r--r--src/simplewallet/simplewallet.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp
index 1811eeb3c..7fa7ff257 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -2410,6 +2410,7 @@ bool simple_wallet::transfer_main(int transfer_type, const std::vector<std::stri
break;
default:
LOG_ERROR("Unknown transfer method, using original");
+ /* FALLTHRU */
case TransferOriginal:
ptx_vector = m_wallet->create_transactions(dsts, fake_outs_count, 0 /* unlock_time */, priority, extra, m_trusted_daemon);
break;