diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2019-05-26 11:01:58 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2019-06-06 07:45:56 +0200 |
commit | 0959d37e3e0f80010a78d175e3846dabf5d35919 (patch) | |
tree | 5bf5a0ff6c7887cb53d94febdbadaa7826dfd6cf /src/net.cpp | |
parent | 03858b23fe1d17e681eb18d24602b276020295a0 (diff) |
Don't use global (external) symbols for symbols that are used in only one translation unit
Diffstat (limited to 'src/net.cpp')
-rw-r--r-- | src/net.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net.cpp b/src/net.cpp index 3c6f5a05f3..75a47d7ad2 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -2287,8 +2287,8 @@ public: WSACleanup(); #endif } -} -instance_of_cnetcleanup; +}; +static CNetCleanup instance_of_cnetcleanup; void CConnman::Interrupt() { |