From: Aaron Ballman Date: Thu, 5 Nov 2015 14:22:56 +0000 (+0000) Subject: Fix a signed/unsigned mismatch warning; NFC. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0ef0b3e8817242de6720adc88996f6a912db7571;p=oota-llvm.git Fix a signed/unsigned mismatch warning; NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@252164 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/Windows/Signals.inc b/lib/Support/Windows/Signals.inc index 8d0b33c0838..f40ca72996a 100644 --- a/lib/Support/Windows/Signals.inc +++ b/lib/Support/Windows/Signals.inc @@ -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)) {