diff options
| author | Howard Chu <hyc@symas.com> | 2017-08-20 15:58:06 +0100 |
|---|---|---|
| committer | Howard Chu <hyc@symas.com> | 2017-08-21 10:16:10 +0100 |
| commit | 0c6c3eb3f220aa4c9f575ebaaacf5775a68589c5 (patch) | |
| tree | f47a9a45d0f3df3098c074df1293bacbd8459ab0 /src | |
| parent | 4466b6d1b08d827f3bdddb1cab8ca05833b65437 (diff) | |
| download | monzero-core-0c6c3eb3f220aa4c9f575ebaaacf5775a68589c5.tar.gz monzero-core-0c6c3eb3f220aa4c9f575ebaaacf5775a68589c5.tar.xz monzero-core-0c6c3eb3f220aa4c9f575ebaaacf5775a68589c5.zip | |
Silence stupid fallthru warning in gcc 7
Diffstat (limited to 'src')
| -rw-r--r-- | src/simplewallet/simplewallet.cpp | 1 |
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; |
