diff options
author | luigi1111 <luigi1111w@gmail.com> | 2020-04-04 12:47:31 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2020-04-04 12:47:31 -0500 |
commit | c4f75fe898992d502e2ef3b6c9d88bc523690403 (patch) | |
tree | 573c7c7c8f8ddf5f39fec89071b07aad42bd10d0 /contrib/epee/include | |
parent | Merge pull request #6338 (diff) | |
parent | remove empty statements (diff) | |
download | monero-c4f75fe898992d502e2ef3b6c9d88bc523690403.tar.xz |
Merge pull request #6339
c61abf8 remove empty statements (shopglobal)
Diffstat (limited to 'contrib/epee/include')
-rw-r--r-- | contrib/epee/include/net/http_protocol_handler.h | 2 | ||||
-rw-r--r-- | contrib/epee/include/net/munin_connection_handler.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/epee/include/net/http_protocol_handler.h b/contrib/epee/include/net/http_protocol_handler.h index 1780f2393..a29f141e8 100644 --- a/contrib/epee/include/net/http_protocol_handler.h +++ b/contrib/epee/include/net/http_protocol_handler.h @@ -202,7 +202,7 @@ namespace net_utils virtual bool thread_init() { - return m_config.m_phandler->init_server_thread();; + return m_config.m_phandler->init_server_thread(); } virtual bool thread_deinit() diff --git a/contrib/epee/include/net/munin_connection_handler.h b/contrib/epee/include/net/munin_connection_handler.h index 62856bec5..20dc38507 100644 --- a/contrib/epee/include/net/munin_connection_handler.h +++ b/contrib/epee/include/net/munin_connection_handler.h @@ -237,7 +237,7 @@ namespace net_utils return send_hook("Unknown command. Try list, nodes, config, fetch, version or quit\n"); } - return send_hook("Unknown command. Try list, nodes, config, fetch, version or quit\n");; + return send_hook("Unknown command. Try list, nodes, config, fetch, version or quit\n"); } bool handle_list_command() |