Fix lldb-gdbserver build

s_listen_thread had the wrong type.

llvm-svn: 212884
This commit is contained in:
Ed Maste 2014-07-12 21:46:39 +00:00
parent f74d48a011
commit c25d5cc777
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ using namespace lldb_private;
namespace
{
static lldb::tid_t s_listen_thread = LLDB_INVALID_HOST_THREAD;
static lldb::thread_t s_listen_thread = LLDB_INVALID_HOST_THREAD;
static std::unique_ptr<ConnectionFileDescriptor> s_listen_connection_up;
static std::string s_listen_url;
}