diff options
| author | Giel van Schijndel <[email protected]> | 2011-06-24 22:00:59 +0200 |
|---|---|---|
| committer | Giel van Schijndel <[email protected]> | 2011-07-13 05:10:15 +0200 |
| commit | 858cebed7dee2e9801e754a9969844b7969254ee (patch) | |
| tree | ad12ee913c13750c880a6bd04508cc25be8f8545 /src/net.cpp | |
| parent | fix warning: X enumeration values not handled in switch [-Wswitch-enum] (diff) | |
| download | discoin-858cebed7dee2e9801e754a9969844b7969254ee.tar.xz discoin-858cebed7dee2e9801e754a9969844b7969254ee.zip | |
fix warning: unused variable 'X' [-Wunused-variable]
Remove several unused variables.
Signed-off-by: Giel van Schijndel <[email protected]>
Diffstat (limited to 'src/net.cpp')
| -rw-r--r-- | src/net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp index da1387449..ac5a2834b 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1700,7 +1700,7 @@ void StartNode(void* parg) printf("Error: CreateThread(ThreadIRCSeed) failed\n"); // Send and receive from sockets, accept connections - pthread_t hThreadSocketHandler = CreateThread(ThreadSocketHandler, NULL, true); + CreateThread(ThreadSocketHandler, NULL, true); // Initiate outbound connections if (!CreateThread(ThreadOpenConnections, NULL)) |