Fix a signed/unsigned mismatch warning; NFC.

llvm-svn: 252164
This commit is contained in:
Aaron Ballman
2015-11-05 14:22:56 +00:00
parent 9e0cf38d9b
commit 3c44b42e70

View File

@@ -217,7 +217,7 @@ static bool printStackTraceWithLLVMSymbolizer(llvm::raw_ostream &OS,
Context.ContextFlags = CONTEXT_CONTROL | CONTEXT_INTEGER;
static void *StackTrace[256];
int Depth = 0;
size_t Depth = 0;
while (fStackWalk64(NativeMachineType, hProcess, hThread, &StackFrame,
&Context, 0, fSymFunctionTableAccess64,
fSymGetModuleBase64, 0)) {