Change type of a few members of a struct from unsigned to signed.

They are used in Windows APIs which expect a signed argument and
cause a build failure on Mingw.

llvm-svn: 203783
This commit is contained in:
Hafiz Abid Qadeer 2014-03-13 10:47:49 +00:00
parent 28bc2f7a14
commit a1b42ec0f2
1 changed files with 2 additions and 2 deletions

View File

@ -22,10 +22,10 @@ namespace lldb_private {
typedef struct Win32RWLOCK
{
unsigned long int readlockcount;
long int readlockcount;
HANDLE writable;
CRITICAL_SECTION writelock;
unsigned long int writelocked;
long int writelocked;
} Win32RWLOCK;
typedef Win32RWLOCK* PWin32RWLOCK;