summaryrefslogtreecommitdiff
path: root/node/Network.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'node/Network.hpp')
-rw-r--r--node/Network.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/node/Network.hpp b/node/Network.hpp
index 8b86c851..14f8f89a 100644
--- a/node/Network.hpp
+++ b/node/Network.hpp
@@ -230,7 +230,7 @@ public:
*
* @return Network configuration (may be a null config if we don't have one yet)
*/
- inline const NetworkConfig &config() const { return _config };
+ inline const NetworkConfig &config() const { return _config; }
/**
* @return A thread-safe copy of our NetworkConfig instead of a const reference
@@ -238,7 +238,7 @@ public:
inline NetworkConfig configCopy() const
{
Mutex::Lock _l(_lock);
- return config;
+ return _config;
}
/**