diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-12-19 14:47:37 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-12-19 14:47:37 +0000 |
commit | 3f2970fadbe2d4dc7057d0c3b83faa93b8622bde (patch) | |
tree | 342e6af9a159ff6fa489e26f3ff653c3ae6b0b71 /src/p2p | |
parent | Merge pull request #544 (diff) | |
download | monero-3f2970fadbe2d4dc7057d0c3b83faa93b8622bde.tar.xz |
Add missing semicolons after log statements
Diffstat (limited to 'src/p2p')
-rw-r--r-- | src/p2p/net_node.inl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/p2p/net_node.inl b/src/p2p/net_node.inl index ef733416d..254c9ae72 100644 --- a/src/p2p/net_node.inl +++ b/src/p2p/net_node.inl @@ -380,7 +380,7 @@ namespace nodetool { boost::thread* th = new boost::thread([=, &dns_results, &addr_str] { - LOG_PRINT_L4("dns_threads[" << result_index << "] created for: " << addr_str) + LOG_PRINT_L4("dns_threads[" << result_index << "] created for: " << addr_str); // TODO: care about dnssec avail/valid bool avail, valid; std::vector<std::string> addr_list; |