diff options
| author | practicalswift <[email protected]> | 2019-05-26 11:01:58 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2019-06-06 07:45:56 +0200 |
| commit | 0959d37e3e0f80010a78d175e3846dabf5d35919 (patch) | |
| tree | 5bf5a0ff6c7887cb53d94febdbadaa7826dfd6cf /src/net.cpp | |
| parent | Merge #15844: depends: Purge libtool archives (diff) | |
| download | discoin-0959d37e3e0f80010a78d175e3846dabf5d35919.tar.xz discoin-0959d37e3e0f80010a78d175e3846dabf5d35919.zip | |
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 3c6f5a05f..75a47d7ad 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() { |