Get rid of unused variable.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31373 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2006-11-02 07:59:59 +00:00
parent 97be133ba2
commit 2b86b0e95c

View File

@ -101,7 +101,7 @@ Mutex::~Mutex()
{
pthread_mutex_t* mutex = reinterpret_cast<pthread_mutex_t*>(data_);
assert(mutex != 0);
int errorcode = pthread_mutex_destroy(mutex);
pthread_mutex_destroy(mutex);
assert(mutex != 0);
}
}