Make some global variables less-global (static)

This commit is contained in:
Pavel Janík 2017-03-08 22:13:15 +01:00 committed by Jack Grigg
parent f0e9019223
commit 4b5ba449bb
No known key found for this signature in database
GPG Key ID: 6A6914DAFBEA00DA
1 changed files with 2 additions and 2 deletions

View File

@ -657,8 +657,8 @@ void TorController::reconnect_cb(evutil_socket_t fd, short what, void *arg)
}
/****** Thread ********/
struct event_base *gBase;
boost::thread torControlThread;
static struct event_base *gBase;
static boost::thread torControlThread;
static void TorControlThread()
{